diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:02:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-27 09:02:31 +0000 |
commit | d3d004dd3507f841745956a035fff68936378f9c (patch) | |
tree | 139fa79a102d11dbab9828d2649c119245b196b1 /editors/sed.c | |
parent | 1340ca8c87d81bf00e604905f25bc04da22e980f (diff) | |
download | busybox-w32-d3d004dd3507f841745956a035fff68936378f9c.tar.gz busybox-w32-d3d004dd3507f841745956a035fff68936378f9c.tar.bz2 busybox-w32-d3d004dd3507f841745956a035fff68936378f9c.zip |
last nail into error_msg() (de)capitalization
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index 65ca5606b..a16023945 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -610,7 +610,7 @@ static int do_subst_command(sed_cmd_t *sed_cmd, char **line) | |||
610 | if (sed_cmd->sub_match == NULL) { | 610 | if (sed_cmd->sub_match == NULL) { |
611 | current_regex = bbg.previous_regex_ptr; | 611 | current_regex = bbg.previous_regex_ptr; |
612 | if (!current_regex) | 612 | if (!current_regex) |
613 | bb_error_msg_and_die("No previous regexp."); | 613 | bb_error_msg_and_die("no previous regexp"); |
614 | } else | 614 | } else |
615 | bbg.previous_regex_ptr = current_regex = sed_cmd->sub_match; | 615 | bbg.previous_regex_ptr = current_regex = sed_cmd->sub_match; |
616 | 616 | ||