svn commit: trunk/busybox/util-linux
vda at busybox.net
vda at busybox.net
Sat Sep 23 15:53:01 UTC 2006
Author: vda
Date: 2006-09-23 08:53:01 -0700 (Sat, 23 Sep 2006)
New Revision: 16204
Log:
hexdump: fixlet for my breakage
Modified:
trunk/busybox/util-linux/hexdump.c
Changeset:
Modified: trunk/busybox/util-linux/hexdump.c
===================================================================
--- trunk/busybox/util-linux/hexdump.c 2006-09-23 15:18:38 UTC (rev 16203)
+++ trunk/busybox/util-linux/hexdump.c 2006-09-23 15:53:01 UTC (rev 16204)
@@ -60,7 +60,7 @@
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) {
More information about the busybox-cvs
mailing list