diff options
Diffstat (limited to 'coreutils/od.c')
-rw-r--r-- | coreutils/od.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/od.c b/coreutils/od.c index 5eaaf5024..b18c53c3f 100644 --- a/coreutils/od.c +++ b/coreutils/od.c | |||
@@ -167,10 +167,10 @@ static const signed char od_o2si[] = { | |||
167 | int od_main(int argc, char **argv) | 167 | int od_main(int argc, char **argv) |
168 | { | 168 | { |
169 | int ch; | 169 | int ch; |
170 | bb_dump_vflag = FIRST; | ||
171 | bb_dump_length = -1; | ||
172 | int first = 1; | 170 | int first = 1; |
173 | signed char *p; | 171 | signed char *p; |
172 | bb_dump_vflag = FIRST; | ||
173 | bb_dump_length = -1; | ||
174 | 174 | ||
175 | while ((ch = getopt(argc, argv, od_opts)) > 0) { | 175 | while ((ch = getopt(argc, argv, od_opts)) > 0) { |
176 | if (((p = strchr(od_opts, ch)) != NULL) && (*p >= 0)) { | 176 | if (((p = strchr(od_opts, ch)) != NULL) && (*p >= 0)) { |