summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smp03/tasks.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/smptests/smp03/tasks.c')
-rw-r--r--testsuites/smptests/smp03/tasks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/smptests/smp03/tasks.c b/testsuites/smptests/smp03/tasks.c
index 3d2afceb6e..8d5ac4af94 100644
--- a/testsuites/smptests/smp03/tasks.c
+++ b/testsuites/smptests/smp03/tasks.c
@@ -20,7 +20,7 @@ rtems_task Test_task(
char task_name[5];
/* Show that this task is running on cpu X */
- sprintf( task_name, "TA%" PRIu32, task_index );
+ sprintf( task_name, "TA%" PRIuPTR, task_index );
PrintTaskInfo( task_name );
TaskRan[task_index] = true;