summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psx06/task2.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-04-07 21:33:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-04-07 21:33:28 +0000
commitf8700f776e4457614beefa4245a6a895344a355d (patch)
tree31a418b0b688edde7017f2d8d9c77b7ce20effbd /c/src/tests/psxtests/psx06/task2.c
parentadded ifdef to avoid warning for unused variable. (diff)
downloadrtems-f8700f776e4457614beefa4245a6a895344a355d.tar.bz2
corrected printf specifications and added casts as necessary to eliminate
warnings.
Diffstat (limited to 'c/src/tests/psxtests/psx06/task2.c')
-rw-r--r--c/src/tests/psxtests/psx06/task2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/tests/psxtests/psx06/task2.c b/c/src/tests/psxtests/psx06/task2.c
index 9332b2b3d4..700e10fc9e 100644
--- a/c/src/tests/psxtests/psx06/task2.c
+++ b/c/src/tests/psxtests/psx06/task2.c
@@ -38,7 +38,7 @@ void *Task_2(
key_data = pthread_getspecific( Key_id );
printf( "Task_2: Got the key value of %ld\n",
- (rtems_unsigned32 *)key_data - Data_array );
+ (unsigned long) ((rtems_unsigned32 *)key_data - Data_array) );
if ( status )
printf( "status = %d\n", status );
assert( !status );