2011-02-08 Ralf Corsépius <ralf.corsepius@rtems.org>

* sp19/inttest.h: Use PRIx32 instead of "lx".
This commit is contained in:
Ralf Corsepius
2011-02-08 04:49:38 +00:00
parent 9632f83df8
commit 5661a69614
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2011-02-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* sp19/inttest.h: Use PRIx32 instead of "lx".
2011-02-02 Joel Sherrill <joel.sherrilL@OARcorp.com>
* sp04/tswitch.c: Shrink memory requirements.
+1 -1
View File
@@ -104,7 +104,7 @@
#define INTEGER_CHECK_ONE( _v, _base, _factor ) \
if ( (_v) != ((_base) + (_factor)) ) { \
printf("%" PRIu32 ": " #_v " wrong -- (0x%" PRIx32 " not 0x%lx)\n", \
printf("%" PRIu32 ": " #_v " wrong -- (0x%" PRIx32 " not 0x%" PRIx32 ")\n", \
task_index, (_v), (_base + _factor)); \
}