summaryrefslogtreecommitdiff
path: root/coreutils/tr.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-08 16:07:02 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-08 16:07:02 +0000
commit240a1cfbbe6cf42e8013ce06cb567b3f28c8727f (patch)
tree8e69bb572dbb2636689a15b21d7a646e942b5091 /coreutils/tr.c
parent5694d5f8d22be2f5be53b2d0ce2e0283ef57d93f (diff)
downloadbusybox-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 'coreutils/tr.c')
-rw-r--r--coreutils/tr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c
index f72d23c03..5d3dd4cd8 100644
--- a/coreutils/tr.c
+++ b/coreutils/tr.c
@@ -84,7 +84,7 @@ static unsigned int expand(const char *arg, char *buffer)
84 unsigned i; /* XXX: FIXME: use unsigned char? */ 84 unsigned i; /* XXX: FIXME: use unsigned char? */
85 unsigned char ac; 85 unsigned char ac;
86#define CLO ":]" 86#define CLO ":]"
87 const char * const classes[] = { 87 static const char * const classes[] = {
88 "alpha"CLO, "alnum"CLO, "digit"CLO, "lower"CLO, "upper"CLO, "space"CLO, 88 "alpha"CLO, "alnum"CLO, "digit"CLO, "lower"CLO, "upper"CLO, "space"CLO,
89 "blank"CLO, "punct"CLO, "cntrl"CLO, NULL 89 "blank"CLO, "punct"CLO, "cntrl"CLO, NULL
90 }; 90 };