summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 06:09:25 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-30 06:09:25 +0000
commit34ba5eb37fc809a55fb6d69908d8306cd3a5ad4b (patch)
treea911fd2e7552c950146dd2ceda63e7168cb26442
parent2009-10-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-34ba5eb37fc809a55fb6d69908d8306cd3a5ad4b.tar.bz2
Another printf format fix.
-rw-r--r--testsuites/sptests/sp44/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/sptests/sp44/init.c b/testsuites/sptests/sp44/init.c
index 7a1e3e9e41..57fdef1f6b 100644
--- a/testsuites/sptests/sp44/init.c
+++ b/testsuites/sptests/sp44/init.c
@@ -77,7 +77,7 @@ rtems_task TaskAB_entry(rtems_task_argument me)
while(1) {
if (turn == me) {
- printf("Task #%" PRIdrtems_task_argument "'s turn. Now setting turn to %d\n", me, 1 - me);
+ printf("Task #%" PRIdrtems_task_argument "'s turn. Now setting turn to %" PRIdrtems_task_argument "\n", me, 1 - me);
turn = 1 - me;
if ( ++iterations == 10 ) {