aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-27 09:02:31 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-27 09:02:31 +0000
commit8b039ac7df3ae06554165c79429b5d06240080c1 (patch)
tree139fa79a102d11dbab9828d2649c119245b196b1 /libbb
parent856b8fef84cd3f5787fdffd85dca2f922ce10732 (diff)
downloadbusybox-w32-8b039ac7df3ae06554165c79429b5d06240080c1.tar.gz
busybox-w32-8b039ac7df3ae06554165c79429b5d06240080c1.tar.bz2
busybox-w32-8b039ac7df3ae06554165c79429b5d06240080c1.zip
last nail into error_msg() (de)capitalization
git-svn-id: svn://busybox.net/trunk/busybox@16451 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/dump.c8
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 /*