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 /shell/ash.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 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 5cdd7f006..962813dbd 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -8762,7 +8762,7 @@ procargs(int argc, char **argv) | |||
8762 | xminusc = minusc; | 8762 | xminusc = minusc; |
8763 | if (*xargv == NULL) { | 8763 | if (*xargv == NULL) { |
8764 | if (xminusc) | 8764 | if (xminusc) |
8765 | sh_error("-c requires an argument"); | 8765 | sh_error(bb_msg_requires_arg, "-c"); |
8766 | sflag = 1; | 8766 | sflag = 1; |
8767 | } | 8767 | } |
8768 | if (iflag == 2 && sflag == 1 && isatty(0) && isatty(1)) | 8768 | if (iflag == 2 && sflag == 1 && isatty(0) && isatty(1)) |