diff options
author | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-19 09:42:02 +0000 |
---|---|---|
committer | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-03-19 09:42:02 +0000 |
commit | 595faba14f00679bc8b60a261c8d98d69e67786f (patch) | |
tree | 31437c2d09e30fdb107cd256208041d05bb1429d /coreutils/od.c | |
parent | e901c15d890dbbdce4c086963cb1513653fc46b5 (diff) | |
download | busybox-w32-595faba14f00679bc8b60a261c8d98d69e67786f.tar.gz busybox-w32-595faba14f00679bc8b60a261c8d98d69e67786f.tar.bz2 busybox-w32-595faba14f00679bc8b60a261c8d98d69e67786f.zip |
Things my compiler didn't catch...
git-svn-id: svn://busybox.net/trunk/busybox@6752 69ca8d6d-28ef-0310-b511-8ec308f3f277
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)) { |