diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-27 10:20:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-27 10:20:47 +0000 |
commit | 4daad9004d8f07991516970a1cbd77756fae7041 (patch) | |
tree | f1a17e4b168ef8fdf8af92ac5ce8deba89d38db2 /networking/nslookup.c | |
parent | 1acdc89e992eb3f0548ff48ba586b31c9a0ae232 (diff) | |
download | busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.tar.gz busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.tar.bz2 busybox-w32-4daad9004d8f07991516970a1cbd77756fae7041.zip |
introduce bb_putchar(). saves ~1800 on uclibc (less on glibc).
Diffstat (limited to 'networking/nslookup.c')
-rw-r--r-- | networking/nslookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c index 0036d0d17..e5bb56f81 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c | |||
@@ -112,7 +112,7 @@ static void server_print(void) | |||
112 | print_host(server, "Server:"); | 112 | print_host(server, "Server:"); |
113 | if (ENABLE_FEATURE_CLEAN_UP) | 113 | if (ENABLE_FEATURE_CLEAN_UP) |
114 | free(server); | 114 | free(server); |
115 | puts(""); | 115 | bb_putchar('\n'); |
116 | } | 116 | } |
117 | 117 | ||
118 | /* alter the global _res nameserver structure to use | 118 | /* alter the global _res nameserver structure to use |