diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-23 15:53:01 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-23 15:53:01 +0000 |
commit | 327e105015d159593c9a7fc9c879e21a1cb780a1 (patch) | |
tree | aa5a1d2928725ef2cbb2dd162e5ab2ffd89d54ca | |
parent | 9e1b923c8951010a0cafdcfe4d75dccee74add66 (diff) | |
download | busybox-w32-327e105015d159593c9a7fc9c879e21a1cb780a1.tar.gz busybox-w32-327e105015d159593c9a7fc9c879e21a1cb780a1.tar.bz2 busybox-w32-327e105015d159593c9a7fc9c879e21a1cb780a1.zip |
hexdump: fixlet for my breakage
git-svn-id: svn://busybox.net/trunk/busybox@16204 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | util-linux/hexdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 3798ce5d2..e038005f5 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c | |||
@@ -60,7 +60,7 @@ int hexdump_main(int argc, char **argv) | |||
60 | bb_dump_length = -1; | 60 | bb_dump_length = -1; |
61 | 61 | ||
62 | while ((ch = getopt(argc, argv, hexdump_opts)) > 0) { | 62 | while ((ch = getopt(argc, argv, hexdump_opts)) > 0) { |
63 | p = strchr(hexdump_opts, ch) | 63 | p = strchr(hexdump_opts, ch); |
64 | if (!p) | 64 | if (!p) |
65 | bb_show_usage(); | 65 | bb_show_usage(); |
66 | if ((p - hexdump_opts) < 5) { | 66 | if ((p - hexdump_opts) < 5) { |