summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp19/fptest.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 14:58:36 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 14:58:36 +0000
commit51b81fd90efa99b4721ecb42397a696841a0c23e (patch)
tree0bf7a372cffe3f9fab2b448323cfd7cae581ca03 /testsuites/sptests/sp19/fptest.h
parent2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-51b81fd90efa99b4721ecb42397a696841a0c23e.tar.bz2
Add missing PRI*32's.
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/sp19/fptest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp19/fptest.h b/testsuites/sptests/sp19/fptest.h
index e4f8c9ec85..cdf4ba2ca0 100644
--- a/testsuites/sptests/sp19/fptest.h
+++ b/testsuites/sptests/sp19/fptest.h
@@ -44,7 +44,7 @@
#define FP_LOAD( _factor ) fp01 = 2;
#define FP_CHECK( _factor ) \
if ( fp01 != 2 ) \
- printf("%d: single integer is wrong -- (%d != 2) \n", \
+ printf("%" PRIu32 ": single integer is wrong -- (%d != 2) \n", \
task_index, fp01 ); \
#else
@@ -125,7 +125,7 @@
#define FP_CHECK_ONE( _v, _base, _factor ) \
if ( FPNEQ( (_v), ((_base) + (_factor)) ) ) { \
- printf("%d: " #_v " wrong -- (%g not %g)\n", \
+ printf("%" PRIu32 ": " #_v " wrong -- (%g not %g)\n", \
task_index, (_v), (_base + _factor)); \
}