diff options
Diffstat (limited to 'libbb/dump.c')
-rw-r--r-- | libbb/dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index b4b49d709..8029cca0e 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -199,7 +199,7 @@ static NOINLINE void rewrite(priv_dumper_t *dumper, FS *fs) | |||
199 | pr->bcnt = fu->bcnt; | 199 | pr->bcnt = fu->bcnt; |
200 | if (fu->bcnt == 0) { | 200 | if (fu->bcnt == 0) { |
201 | if (!prec) | 201 | if (!prec) |
202 | bb_error_msg_and_die("%%s needs precision or byte count"); | 202 | bb_simple_error_msg_and_die("%%s needs precision or byte count"); |
203 | pr->bcnt = atoi(prec); | 203 | pr->bcnt = atoi(prec); |
204 | } | 204 | } |
205 | } else | 205 | } else |
@@ -266,7 +266,7 @@ static NOINLINE void rewrite(priv_dumper_t *dumper, FS *fs) | |||
266 | 266 | ||
267 | /* only one conversion character if byte count */ | 267 | /* only one conversion character if byte count */ |
268 | if (!(pr->flags & F_ADDRESS) && fu->bcnt && nconv++) { | 268 | if (!(pr->flags & F_ADDRESS) && fu->bcnt && nconv++) { |
269 | bb_error_msg_and_die("byte count with multiple conversion characters"); | 269 | bb_simple_error_msg_and_die("byte count with multiple conversion characters"); |
270 | } | 270 | } |
271 | } | 271 | } |
272 | /* | 272 | /* |