summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/rfs/rtems-rfs-group.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-22 14:55:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-22 14:55:37 +0000
commit5fe38341ad0d280f2906fa9454ae3d282f9511b9 (patch)
tree2a7b66ed76fa52b8812b6a35936991382cf70576 /cpukit/libfs/src/rfs/rtems-rfs-group.c
parentNew. (diff)
downloadrtems-5fe38341ad0d280f2906fa9454ae3d282f9511b9.tar.bz2
2010-03-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/src/rfs/rtems-rfs-bitmaps-ut.c, libfs/src/rfs/rtems-rfs-block.c, libfs/src/rfs/rtems-rfs-buffer.c, libfs/src/rfs/rtems-rfs-dir.c, libfs/src/rfs/rtems-rfs-file.c, libfs/src/rfs/rtems-rfs-format.c, libfs/src/rfs/rtems-rfs-group.c, libfs/src/rfs/rtems-rfs-rtems-file.c, libfs/src/rfs/rtems-rfs-shell.c: Fix printf format warning. Primarily for size_t.
Diffstat (limited to '')
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-group.c b/cpukit/libfs/src/rfs/rtems-rfs-group.c
index 9a1e27871e..b69bc29aab 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-group.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-group.c
@@ -42,7 +42,7 @@ rtems_rfs_group_open (rtems_rfs_file_system* fs,
size = rtems_rfs_fs_blocks (fs) - base;
if (rtems_rfs_trace (RTEMS_RFS_TRACE_GROUP_OPEN))
- printf ("rtems-rfs: group-open: base=%ld, blocks=%ld inodes=%ld\n",
+ printf ("rtems-rfs: group-open: base=%ld, blocks=%zd inodes=%zd\n",
base, size, inodes);
group->base = base;