summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 08:15:55 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 08:15:55 +0000
commitcdfa0e6306731cdd3e7cec1b4cfeedb0d1eb3d71 (patch)
tree26329d2abb8858361168b66d1a07febd68c8ce9b /testsuites
parent2009-10-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-cdfa0e6306731cdd3e7cec1b4cfeedb0d1eb3d71.tar.bz2
Remove cast in call to fatal_posix_service_status_errno.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/psxmsgq02/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxmsgq02/init.c b/testsuites/psxtests/psxmsgq02/init.c
index af19320f17..5aa4bc88d1 100644
--- a/testsuites/psxtests/psxmsgq02/init.c
+++ b/testsuites/psxtests/psxmsgq02/init.c
@@ -50,7 +50,7 @@ void *POSIX_Init(
attr.mq_msgsize = MSGSIZE;
puts("Init: mq_open - Workspace not available - ENOMEM");
mq = mq_open( Get_Longest_Name(), O_CREAT, 0x777, &attr );
- fatal_posix_service_status_errno((int)mq, ENOMEM, "no workspace available");
+ fatal_posix_service_status_errno(mq, ENOMEM, "no workspace available");
puts( "*** END OF POSIX MESSAGE QUEUE 02 TEST ***" );
rtems_test_exit( 0 );