diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-08 16:07:02 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-04-08 16:07:02 +0000 |
commit | 9bb500e5d36c2c5945b611c4c2064e03a6ff9660 (patch) | |
tree | 8e69bb572dbb2636689a15b21d7a646e942b5091 /coreutils/expr.c | |
parent | a90d14bdbfab265b227e483c71dad87b7e1c3c1b (diff) | |
download | busybox-w32-9bb500e5d36c2c5945b611c4c2064e03a6ff9660.tar.gz busybox-w32-9bb500e5d36c2c5945b611c4c2064e03a6ff9660.tar.bz2 busybox-w32-9bb500e5d36c2c5945b611c4c2064e03a6ff9660.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
git-svn-id: svn://busybox.net/trunk/busybox@18366 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index f75f6e0de..b6bd383f6 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -278,7 +278,7 @@ static VALUE *eval7(void) | |||
278 | static VALUE *eval6(void) | 278 | static VALUE *eval6(void) |
279 | { | 279 | { |
280 | VALUE *l, *r, *v = NULL /* silence gcc */, *i1, *i2; | 280 | VALUE *l, *r, *v = NULL /* silence gcc */, *i1, *i2; |
281 | const char * const keywords[] = { | 281 | static const char * const keywords[] = { |
282 | "quote", "length", "match", "index", "substr", NULL | 282 | "quote", "length", "match", "index", "substr", NULL |
283 | }; | 283 | }; |
284 | 284 | ||