summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsépius <ralf.corsepius@rtems.org>2012-10-11 18:27:34 +0200
committerRalf Corsépius <ralf.corsepius@rtems.org>2012-10-11 18:27:34 +0200
commitc1412db5c3106445ecf952db9ca7686b958cd803 (patch)
tree93036934a481704e8d230e1cf600be0cec454c7a /testsuites
parentImport from automake-1.12.4. (diff)
downloadrtems-c1412db5c3106445ecf952db9ca7686b958cd803.tar.bz2
Use %zu instead of %lu to print size_t's.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/fstests/fsrfsbitmap01/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/fstests/fsrfsbitmap01/test.c b/testsuites/fstests/fsrfsbitmap01/test.c
index a0ad39c130..bec40e9135 100644
--- a/testsuites/fstests/fsrfsbitmap01/test.c
+++ b/testsuites/fstests/fsrfsbitmap01/test.c
@@ -391,7 +391,7 @@ rtems_rfs_bitmap_ut_test_bitmap (size_t size)
rtems_test_assert( rc == EINVAL );
/* Set all bits, clear one and then set this cleared bit once again */
- printf (" 32. Set all bits in the map, then clear bit (%lu) and set this bit once again:",control.size/2);
+ printf (" 32. Set all bits in the map, then clear bit (%zu) and set this bit once again:",control.size/2);
rc = rtems_rfs_bitmap_map_set_all(&control);
rtems_test_assert( rc == 0 );
rc = rtems_rfs_bitmap_map_clear(&control, control.size/2);