diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-20 13:28:22 +0000 |
commit | 404aa1479965df0d5d019a6a14f62fa696419e4c (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /coreutils/expr.c | |
parent | 753fc33dda8a58173631650d3218e6f7b51ea58d (diff) | |
download | busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.gz busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.tar.bz2 busybox-w32-404aa1479965df0d5d019a6a14f62fa696419e4c.zip |
message string changes, mostly for consistency, also -32 bytes in .rodata
git-svn-id: svn://busybox.net/trunk/busybox@16412 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index e7fdc5f1e..ea99d8b5b 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -250,7 +250,7 @@ of a basic regular expression is not portable; it is being ignored", pv->u.s); | |||
250 | memset(&re_buffer, 0, sizeof(re_buffer)); | 250 | memset(&re_buffer, 0, sizeof(re_buffer)); |
251 | memset(re_regs, 0, sizeof(*re_regs)); | 251 | memset(re_regs, 0, sizeof(*re_regs)); |
252 | if (regcomp(&re_buffer, pv->u.s, 0) != 0) | 252 | if (regcomp(&re_buffer, pv->u.s, 0) != 0) |
253 | bb_error_msg_and_die("Invalid regular expression"); | 253 | bb_error_msg_and_die("invalid regular expression"); |
254 | 254 | ||
255 | /* expr uses an anchored pattern match, so check that there was a | 255 | /* expr uses an anchored pattern match, so check that there was a |
256 | * match and that the match starts at offset 0. */ | 256 | * match and that the match starts at offset 0. */ |