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 /libbb | |
parent | f02b64de864b03ac29b64efb7eb26658da05b1a2 (diff) |
hexdump: fix error message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-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) pr->bcnt = fu->bcnt; if (fu->bcnt == 0) { if (!prec) - bb_simple_error_msg_and_die("%%s needs precision or byte count"); + bb_simple_error_msg_and_die("%s needs precision or byte count"); pr->bcnt = atoi(prec); } } else |