From 327e105015d159593c9a7fc9c879e21a1cb780a1 Mon Sep 17 00:00:00 2001 From: vda Date: Sat, 23 Sep 2006 15:53:01 +0000 Subject: hexdump: fixlet for my breakage git-svn-id: svn://busybox.net/trunk/busybox@16204 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- util-linux/hexdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3-55-g6feb