From 51f5d64cf4b03f9ca9167d7c8c34ffdcc4182c31 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 2 Apr 1997 16:26:39 +0000 Subject: corrected printf format to avoid warning --- c/src/tests/psxtests/psx05/init.c | 2 +- c/src/tests/psxtests/psx06/init.c | 2 +- c/src/tests/psxtests/psx06/task.c | 2 +- c/src/tests/psxtests/psx06/task2.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'c/src/tests/psxtests') diff --git a/c/src/tests/psxtests/psx05/init.c b/c/src/tests/psxtests/psx05/init.c index ec79d6db37..bade436f6f 100644 --- a/c/src/tests/psxtests/psx05/init.c +++ b/c/src/tests/psxtests/psx05/init.c @@ -14,7 +14,7 @@ #include "system.h" #include -#define MUTEX_BAD_ID -2 +#define MUTEX_BAD_ID 0xfffffffe void Print_mutexattr( char *msg, diff --git a/c/src/tests/psxtests/psx06/init.c b/c/src/tests/psxtests/psx06/init.c index f35bcbb926..bc66cf3ef2 100644 --- a/c/src/tests/psxtests/psx06/init.c +++ b/c/src/tests/psxtests/psx06/init.c @@ -94,7 +94,7 @@ void *POSIX_Init( /* switch to task 1 */ key_data = pthread_getspecific( Key_id ); - printf( "Init: Got the key value of %d\n", + printf( "Init: Got the key value of %ld\n", (rtems_unsigned32 *)key_data - Data_array ); remaining = sleep( 3 ); diff --git a/c/src/tests/psxtests/psx06/task.c b/c/src/tests/psxtests/psx06/task.c index a4ebc285f4..98e34117b5 100644 --- a/c/src/tests/psxtests/psx06/task.c +++ b/c/src/tests/psxtests/psx06/task.c @@ -36,7 +36,7 @@ void *Task_1( assert( !status ); key_data = pthread_getspecific( Key_id ); - printf( "Task_1: Got the key value of %d\n", + printf( "Task_1: Got the key value of %ld\n", (rtems_unsigned32 *)key_data - Data_array ); if ( status ) printf( "status = %d\n", status ); diff --git a/c/src/tests/psxtests/psx06/task2.c b/c/src/tests/psxtests/psx06/task2.c index 90569f993c..9332b2b3d4 100644 --- a/c/src/tests/psxtests/psx06/task2.c +++ b/c/src/tests/psxtests/psx06/task2.c @@ -37,7 +37,7 @@ void *Task_2( assert( !status ); key_data = pthread_getspecific( Key_id ); - printf( "Task_2: Got the key value of %d\n", + printf( "Task_2: Got the key value of %ld\n", (rtems_unsigned32 *)key_data - Data_array ); if ( status ) printf( "status = %d\n", status ); -- cgit v1.2.3