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/traceroute.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/traceroute.c')
-rw-r--r-- | networking/traceroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c index 2d09c7197..e8d486f4c 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -1322,7 +1322,7 @@ int traceroute_main(int argc, char **argv) | |||
1322 | printf(" *"); | 1322 | printf(" *"); |
1323 | (void)fflush(stdout); | 1323 | (void)fflush(stdout); |
1324 | } | 1324 | } |
1325 | putchar('\n'); | 1325 | bb_putchar('\n'); |
1326 | if (got_there || | 1326 | if (got_there || |
1327 | (unreachable > 0 && unreachable >= nprobes - 1)) | 1327 | (unreachable > 0 && unreachable >= nprobes - 1)) |
1328 | break; | 1328 | break; |