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 /coreutils/dd.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 'coreutils/dd.c')
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 518c5fed2..4507b5e0c 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -75,7 +75,7 @@ int dd_main(int argc, char **argv) | |||
75 | trunc_flag = 1 << 2, | 75 | trunc_flag = 1 << 2, |
76 | twobufs_flag = 1 << 3, | 76 | twobufs_flag = 1 << 3, |
77 | }; | 77 | }; |
78 | const char * const keywords[] = { | 78 | static const char * const keywords[] = { |
79 | "bs=", "count=", "seek=", "skip=", "if=", "of=", | 79 | "bs=", "count=", "seek=", "skip=", "if=", "of=", |
80 | #if ENABLE_FEATURE_DD_IBS_OBS | 80 | #if ENABLE_FEATURE_DD_IBS_OBS |
81 | "ibs=", "obs=", "conv=", "notrunc", "sync", "noerror", | 81 | "ibs=", "obs=", "conv=", "notrunc", "sync", "noerror", |