summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp19
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-02-08 04:49:38 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-02-08 04:49:38 +0000
commit5661a69614fb73bf82ef4c69858d71ee78718cbe (patch)
treeabb19d4f70ad78cca12e811dbc6300427831e1c7 /testsuites/sptests/sp19
parent011-02-08 Brett Swimley <bswimley@advanced.pro> (diff)
downloadrtems-5661a69614fb73bf82ef4c69858d71ee78718cbe.tar.bz2
2011-02-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* sp19/inttest.h: Use PRIx32 instead of "lx".
Diffstat (limited to 'testsuites/sptests/sp19')
-rw-r--r--testsuites/sptests/sp19/inttest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/sptests/sp19/inttest.h b/testsuites/sptests/sp19/inttest.h
index da20f1318d..bab14fef94 100644
--- a/testsuites/sptests/sp19/inttest.h
+++ b/testsuites/sptests/sp19/inttest.h
@@ -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)); \
}