summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxmsgq03/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxmsgq03/init.c')
-rw-r--r--testsuites/psxtests/psxmsgq03/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxmsgq03/init.c b/testsuites/psxtests/psxmsgq03/init.c
index 4d64aa53d5..b144ea7190 100644
--- a/testsuites/psxtests/psxmsgq03/init.c
+++ b/testsuites/psxtests/psxmsgq03/init.c
@@ -55,14 +55,14 @@ void *POSIX_Init(
if ( Queue == (-1) ) {
perror( "mq_open failed" );
}
- rtems_test_assert( Queue != (-1) );
+ rtems_test_assert( Queue != (-1) );
puts( "Init - send to message queue" );
status = mq_send( Queue, (const char *)&status, sizeof(int), 1 );
if ( status == (-1) ) {
perror( "mq_status failed" );
}
- rtems_test_assert( status != (-1) );
+ rtems_test_assert( status != (-1) );
/*
* Now create the timer we will send to a full queue from.