diff options
Diffstat (limited to 'libbb/dump.c')
-rw-r--r-- | libbb/dump.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index d76cbc0b7..8be29efad 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -153,7 +153,7 @@ static void rewrite(FS * fs) | |||
153 | } | 153 | } |
154 | /* Unlike the original, output the remainder of the format string. */ | 154 | /* Unlike the original, output the remainder of the format string. */ |
155 | if (!*byte_count_str) { | 155 | if (!*byte_count_str) { |
156 | bb_error_msg_and_die("bad byte count for conversion character %s.", p1); | 156 | bb_error_msg_and_die("bad byte count for conversion character %s", p1); |
157 | } | 157 | } |
158 | pr->bcnt = *byte_count_str; | 158 | pr->bcnt = *byte_count_str; |
159 | } else if (*p1 == 'l') { | 159 | } else if (*p1 == 'l') { |
@@ -186,7 +186,7 @@ static void rewrite(FS * fs) | |||
186 | } else if (sokay == USEPREC) { | 186 | } else if (sokay == USEPREC) { |
187 | pr->bcnt = prec; | 187 | pr->bcnt = prec; |
188 | } else { /* NOTOKAY */ | 188 | } else { /* NOTOKAY */ |
189 | bb_error_msg_and_die("%%s requires a precision or a byte count."); | 189 | bb_error_msg_and_die("%%s requires a precision or a byte count"); |
190 | } | 190 | } |
191 | } else if (*p1 == '_') { | 191 | } else if (*p1 == '_') { |
192 | ++p2; | 192 | ++p2; |
@@ -220,7 +220,7 @@ static void rewrite(FS * fs) | |||
220 | } | 220 | } |
221 | } else { | 221 | } else { |
222 | DO_BAD_CONV_CHAR: | 222 | DO_BAD_CONV_CHAR: |
223 | bb_error_msg_and_die("bad conversion character %%%s.", p1); | 223 | bb_error_msg_and_die("bad conversion character %%%s", p1); |
224 | } | 224 | } |
225 | 225 | ||
226 | /* | 226 | /* |
@@ -253,7 +253,7 @@ static void rewrite(FS * fs) | |||
253 | 253 | ||
254 | /* only one conversion character if byte count */ | 254 | /* only one conversion character if byte count */ |
255 | if (!(pr->flags & F_ADDRESS) && fu->bcnt && nconv++) { | 255 | if (!(pr->flags & F_ADDRESS) && fu->bcnt && nconv++) { |
256 | bb_error_msg_and_die("byte count with multiple conversion characters."); | 256 | bb_error_msg_and_die("byte count with multiple conversion characters"); |
257 | } | 257 | } |
258 | } | 258 | } |
259 | /* | 259 | /* |