diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-25 10:39:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-25 10:39:13 +0000 |
commit | 06607b674f434b912cc5840253c376c572f2477e (patch) | |
tree | 4f9722dc870322c49d1de11cd2a30a610189f901 /libc/inet/gai_strerror.c | |
parent | 06135d973dd6fdf749198edd3e38f815ec977cb6 (diff) |
Slight size reduction by use of smallints/consts:
- 288016 1924 7176 297116 4889c libuClibc-0.9.29.so
+ 287956 1924 7168 297048 48858 libuClibc-0.9.29.so
Diffstat (limited to 'libc/inet/gai_strerror.c')
-rw-r--r-- | libc/inet/gai_strerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/gai_strerror.c b/libc/inet/gai_strerror.c index c1c7b767f..61688bad9 100644 --- a/libc/inet/gai_strerror.c +++ b/libc/inet/gai_strerror.c @@ -24,7 +24,7 @@ #define N_(x) x #define _(x) x -static struct +static const struct { int code; const char *msg; |