summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko2021-06-17 23:23:26 +0200
committerDenys Vlasenko2021-06-17 23:23:26 +0200
commita0f8076d19d721996b95b64eba95adae011215af (patch)
tree284d07f4cf3ed21cad9b597a0d45cc2bbe10f5fd
parentf02b64de864b03ac29b64efb7eb26658da05b1a2 (diff)
downloadbusybox-a0f8076d19d721996b95b64eba95adae011215af.zip
busybox-a0f8076d19d721996b95b64eba95adae011215af.tar.gz
hexdump: fix error message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--libbb/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/dump.c b/libbb/dump.c
index fb7849e..e83633c 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