aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-12-31 11:34:17 +0000
committerMike Frysinger <vapier@gentoo.org>2006-12-31 11:34:17 +0000
commit5dd76862efb253f8a4fe73f469ff1a037519de66 (patch)
treeb9e64e3d9f486cbb11065c07feb134eeddae1128 /coreutils
parent4a64c3344329efb658dd1bcb4dae112cb727c415 (diff)
downloadbusybox-5dd76862efb253f8a4fe73f469ff1a037519de66.tar.gz
Yann E. MORIN. writes: i pity the fool who doesnt use the z length modifier with size_t types
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/od_bloaty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c
index 6ae0e046b..fae41afae 100644
--- a/coreutils/od_bloaty.c
+++ b/coreutils/od_bloaty.c
@@ -1436,7 +1436,7 @@ od_main(int argc, char **argv)
if (str_w)
bytes_per_block = xatou(str_w);
if (!bytes_per_block || bytes_per_block % l_c_m != 0) {
- bb_error_msg("warning: invalid width %u; using %d instead",
+ bb_error_msg("warning: invalid width %zu; using %d instead",
bytes_per_block, l_c_m);
bytes_per_block = l_c_m;
}