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
This commit is contained in:
@ -716,11 +716,12 @@ static char * strsep_space(char *string, int * ix)
|
||||
|
||||
static int expand_arguments(char *command)
|
||||
{
|
||||
static const char out_of_space[] = "out of space during expansion";
|
||||
|
||||
int total_length = 0, length, i, retval, ix = 0;
|
||||
expand_t expand_result;
|
||||
char *tmpcmd, *cmd, *cmd_copy;
|
||||
char *src, *dst, *var;
|
||||
const char * const out_of_space = "out of space during expansion";
|
||||
int flags = GLOB_NOCHECK
|
||||
#ifdef GLOB_BRACE
|
||||
| GLOB_BRACE
|
||||
|
Reference in New Issue
Block a user