diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-17 23:23:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-17 23:23:26 +0200 |
commit | a0f8076d19d721996b95b64eba95adae011215af (patch) | |
tree | 284d07f4cf3ed21cad9b597a0d45cc2bbe10f5fd | |
parent | f02b64de864b03ac29b64efb7eb26658da05b1a2 (diff) | |
download | busybox-w32-a0f8076d19d721996b95b64eba95adae011215af.tar.gz busybox-w32-a0f8076d19d721996b95b64eba95adae011215af.tar.bz2 busybox-w32-a0f8076d19d721996b95b64eba95adae011215af.zip |
hexdump: fix error message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index fb7849e7d..e83633c1d 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -211,7 +211,7 @@ static NOINLINE void rewrite(priv_dumper_t *dumper, FS *fs) | |||
211 | pr->bcnt = fu->bcnt; | 211 | pr->bcnt = fu->bcnt; |
212 | if (fu->bcnt == 0) { | 212 | if (fu->bcnt == 0) { |
213 | if (!prec) | 213 | if (!prec) |
214 | bb_simple_error_msg_and_die("%%s needs precision or byte count"); | 214 | bb_simple_error_msg_and_die("%s needs precision or byte count"); |
215 | pr->bcnt = atoi(prec); | 215 | pr->bcnt = atoi(prec); |
216 | } | 216 | } |
217 | } else | 217 | } else |