diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-31 11:34:17 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-31 11:34:17 +0000 |
commit | c01a494d314bad1e60f7b7815330e314aa1bac57 (patch) | |
tree | b9e64e3d9f486cbb11065c07feb134eeddae1128 | |
parent | f2f452b40a2f622d69f3245a32ec668867fc703a (diff) | |
download | busybox-w32-c01a494d314bad1e60f7b7815330e314aa1bac57.tar.gz busybox-w32-c01a494d314bad1e60f7b7815330e314aa1bac57.tar.bz2 busybox-w32-c01a494d314bad1e60f7b7815330e314aa1bac57.zip |
Yann E. MORIN. writes: i pity the fool who doesnt use the z length modifier with size_t types
git-svn-id: svn://busybox.net/trunk/busybox@17114 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | coreutils/od_bloaty.c | 2 |
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) | |||
1436 | if (str_w) | 1436 | if (str_w) |
1437 | bytes_per_block = xatou(str_w); | 1437 | bytes_per_block = xatou(str_w); |
1438 | if (!bytes_per_block || bytes_per_block % l_c_m != 0) { | 1438 | if (!bytes_per_block || bytes_per_block % l_c_m != 0) { |
1439 | bb_error_msg("warning: invalid width %u; using %d instead", | 1439 | bb_error_msg("warning: invalid width %zu; using %d instead", |
1440 | bytes_per_block, l_c_m); | 1440 | bytes_per_block, l_c_m); |
1441 | bytes_per_block = l_c_m; | 1441 | bytes_per_block = l_c_m; |
1442 | } | 1442 | } |