diff options
Diffstat (limited to 'coreutils/od_bloaty.c')
-rw-r--r-- | coreutils/od_bloaty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index 00efec51c..1d5769bd8 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c | |||
@@ -963,7 +963,7 @@ parse_old_offset(const char *s, off_t *offset) | |||
963 | static const struct suffix_mult Bb[] = { | 963 | static const struct suffix_mult Bb[] = { |
964 | { "B", 1024 }, | 964 | { "B", 1024 }, |
965 | { "b", 512 }, | 965 | { "b", 512 }, |
966 | { } | 966 | { "", 0 } |
967 | }; | 967 | }; |
968 | char *p; | 968 | char *p; |
969 | int radix; | 969 | int radix; |
@@ -1178,7 +1178,7 @@ int od_main(int argc, char **argv) | |||
1178 | { "b", 512 }, | 1178 | { "b", 512 }, |
1179 | { "k", 1024 }, | 1179 | { "k", 1024 }, |
1180 | { "m", 1024*1024 }, | 1180 | { "m", 1024*1024 }, |
1181 | { } | 1181 | { "", 0 } |
1182 | }; | 1182 | }; |
1183 | enum { | 1183 | enum { |
1184 | OPT_A = 1 << 0, | 1184 | OPT_A = 1 << 0, |