diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 02:51:29 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-26 02:51:29 +0000 |
commit | 0de9375ee6e766cf15942c6582c79b0ac6d310f5 (patch) | |
tree | 69a866577fc99e3e0c3153f486f22a2e675028a0 /libbb/dump.c | |
parent | c4f623ef2a7980a63de7c9f1d539a656b83f10e7 (diff) | |
download | busybox-w32-0de9375ee6e766cf15942c6582c79b0ac6d310f5.tar.gz busybox-w32-0de9375ee6e766cf15942c6582c79b0ac6d310f5.tar.bz2 busybox-w32-0de9375ee6e766cf15942c6582c79b0ac6d310f5.zip |
leftover of e2fsck surgery
Diffstat (limited to 'libbb/dump.c')
-rw-r--r-- | libbb/dump.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index d6e31b9b1..06b73c955 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -724,7 +724,9 @@ void bb_dump_add(const char *fmt) | |||
724 | 724 | ||
725 | /* byte count */ | 725 | /* byte count */ |
726 | if (isdigit(*p)) { | 726 | if (isdigit(*p)) { |
727 | for (savep = p; isdigit(*p); ++p); | 727 | // TODO: use bb_strtou |
728 | savep = p; | ||
729 | do p++; while(isdigit(*p)); | ||
728 | if (!isspace(*p)) { | 730 | if (!isspace(*p)) { |
729 | bb_error_msg_and_die("bad format {%s}", fmt); | 731 | bb_error_msg_and_die("bad format {%s}", fmt); |
730 | } | 732 | } |