diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-08 16:07:02 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-08 16:07:02 +0000 |
commit | 240a1cfbbe6cf42e8013ce06cb567b3f28c8727f (patch) | |
tree | 8e69bb572dbb2636689a15b21d7a646e942b5091 /shell/lash.c | |
parent | 5694d5f8d22be2f5be53b2d0ce2e0283ef57d93f (diff) | |
download | busybox-w32-240a1cfbbe6cf42e8013ce06cb567b3f28c8727f.tar.gz busybox-w32-240a1cfbbe6cf42e8013ce06cb567b3f28c8727f.tar.bz2 busybox-w32-240a1cfbbe6cf42e8013ce06cb567b3f28c8727f.zip |
add some missed statics on constant objects.
fix few #ifndef ENABLE_xxx
# size busybox_old busybox_unstripped
text data bss dec hex filename
677152 2920 18208 698280 aa7a8 busybox_old
676420 2920 18208 697548 aa4cc busybox_unstripped
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c index 58d770fd8..192900bb6 100644 --- a/shell/lash.c +++ b/shell/lash.c | |||
@@ -716,11 +716,12 @@ static char * strsep_space(char *string, int * ix) | |||
716 | 716 | ||
717 | static int expand_arguments(char *command) | 717 | static int expand_arguments(char *command) |
718 | { | 718 | { |
719 | static const char out_of_space[] = "out of space during expansion"; | ||
720 | |||
719 | int total_length = 0, length, i, retval, ix = 0; | 721 | int total_length = 0, length, i, retval, ix = 0; |
720 | expand_t expand_result; | 722 | expand_t expand_result; |
721 | char *tmpcmd, *cmd, *cmd_copy; | 723 | char *tmpcmd, *cmd, *cmd_copy; |
722 | char *src, *dst, *var; | 724 | char *src, *dst, *var; |
723 | const char * const out_of_space = "out of space during expansion"; | ||
724 | int flags = GLOB_NOCHECK | 725 | int flags = GLOB_NOCHECK |
725 | #ifdef GLOB_BRACE | 726 | #ifdef GLOB_BRACE |
726 | | GLOB_BRACE | 727 | | GLOB_BRACE |