aboutsummaryrefslogtreecommitdiff
path: root/util-linux/hexdump.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-23 15:53:01 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-23 15:53:01 +0000
commit4c196a80fce835e1f02130dfd23b63183e9c919f (patch)
treeaa5a1d2928725ef2cbb2dd162e5ab2ffd89d54ca /util-linux/hexdump.c
parentec17d437ab8042a5ad9e7c836f01b56c8795d80b (diff)
downloadbusybox-4c196a80fce835e1f02130dfd23b63183e9c919f.tar.gz
hexdump: fixlet for my breakage
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r--util-linux/hexdump.c2
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)
bb_dump_length = -1;
while ((ch = getopt(argc, argv, hexdump_opts)) > 0) {
- p = strchr(hexdump_opts, ch)
+ p = strchr(hexdump_opts, ch);
if (!p)
bb_show_usage();
if ((p - hexdump_opts) < 5) {