summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxkey01/task.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 14:10:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 14:10:54 +0000
commit39615f481a74f1d4d612b734ea8a126e4e43b407 (patch)
tree7f2c2c7288bbbe738978a7082460ee50a9414f52 /testsuites/psxtests/psxkey01/task.c
parent2009-10-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-39615f481a74f1d4d612b734ea8a126e4e43b407.tar.bz2
Use PRIxpthread_t to print pthread_t's.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psxkey01/task.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxkey01/task.c b/testsuites/psxtests/psxkey01/task.c
index 00d9249ca3..9a81ec85a5 100644
--- a/testsuites/psxtests/psxkey01/task.c
+++ b/testsuites/psxtests/psxkey01/task.c
@@ -29,7 +29,7 @@ void *Task_1(
int status;
uint32_t *key_data;
- printf( "Thread 0x%08x\n", id );
+ printf( "Thread 0x%08" PRIxpthread_t "\n", id );
printf( "Task_1: Setting the key to %d\n", 1 );
status = pthread_setspecific( Key_id[0], (void *)&Data_array[ 1 ] );
if ( status )