diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-07 20:17:41 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-07 20:17:41 +0000 |
commit | f4532f9fd377898c339aaa81cde66c14808248dd (patch) | |
tree | 6e35288c247102998a775cbc16f9ec014e00e7fd /editors/sed.c | |
parent | 2ce533f0b2a79abdfb07d8879afe08f697278158 (diff) | |
download | busybox-w32-f4532f9fd377898c339aaa81cde66c14808248dd.tar.gz busybox-w32-f4532f9fd377898c339aaa81cde66c14808248dd.tar.bz2 busybox-w32-f4532f9fd377898c339aaa81cde66c14808248dd.zip |
- reuse strings and messages. Saves about 600B
git-svn-id: svn://busybox.net/trunk/busybox@15325 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 71542d2ac..219a44008 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -1166,7 +1166,7 @@ int sed_main(int argc, char **argv) | |||
1166 | * files were specified or '-' was specified, take input from stdin. | 1166 | * files were specified or '-' was specified, take input from stdin. |
1167 | * Otherwise, we process all the files specified. */ | 1167 | * Otherwise, we process all the files specified. */ |
1168 | if (argv[optind] == NULL) { | 1168 | if (argv[optind] == NULL) { |
1169 | if(bbg.in_place) bb_error_msg_and_die("Filename required for -i"); | 1169 | if(bbg.in_place) bb_error_msg_and_die(bb_msg_requires_arg, "-i"); |
1170 | add_input_file(stdin); | 1170 | add_input_file(stdin); |
1171 | process_files(); | 1171 | process_files(); |
1172 | } else { | 1172 | } else { |