2011-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>

* tm26/fptest.h: Use PRIu32 to print uint32_t.
This commit is contained in:
Ralf Corsepius
2011-10-18 08:42:57 +00:00
parent 35453000cc
commit c0b35f9385
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2011-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>
* tm26/fptest.h: Use PRIu32 to print uint32_t.
2011-05-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* tm26/system.h, tm27/system.h: Ensure these tests use the correct
+1 -1
View File
@@ -118,7 +118,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)); \
}