diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-10 10:01:49 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-10 10:01:49 +0100 |
commit | dee0fc9da1b53efc4c5e0596428dda556995bc26 (patch) | |
tree | 7b3e0fcbb91271c5e98a991e1e1d3835981f8219 /libbb | |
parent | 0fac2f7b5b0bacf2c1ad73215acb312e012f0227 (diff) | |
download | busybox-w32-dee0fc9da1b53efc4c5e0596428dda556995bc26.tar.gz busybox-w32-dee0fc9da1b53efc4c5e0596428dda556995bc26.tar.bz2 busybox-w32-dee0fc9da1b53efc4c5e0596428dda556995bc26.zip |
save 10 bytes on strings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 2acbc3bca..fad82c9da 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -22,7 +22,7 @@ | |||
22 | const char bb_banner[] ALIGN1 = BANNER; | 22 | const char bb_banner[] ALIGN1 = BANNER; |
23 | 23 | ||
24 | 24 | ||
25 | const char bb_msg_memory_exhausted[] ALIGN1 = "memory exhausted"; | 25 | const char bb_msg_memory_exhausted[] ALIGN1 = "out of memory"; |
26 | const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'"; | 26 | const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'"; |
27 | const char bb_msg_unknown[] ALIGN1 = "(unknown)"; | 27 | const char bb_msg_unknown[] ALIGN1 = "(unknown)"; |
28 | const char bb_msg_can_not_create_raw_socket[] ALIGN1 = "can't create raw socket"; | 28 | const char bb_msg_can_not_create_raw_socket[] ALIGN1 = "can't create raw socket"; |