diff options
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 | } |