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/libiproute | |
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/libiproute')
-rw-r--r-- | networking/libiproute/iptunnel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/iptunnel.c b/networking/libiproute/iptunnel.c index 2b1713556..a936a4275 100644 --- a/networking/libiproute/iptunnel.c +++ b/networking/libiproute/iptunnel.c | |||
@@ -482,7 +482,7 @@ static void do_tunnels_list(struct ip_tunnel_parm *p) | |||
482 | (p->i_key && p1.i_key != p->i_key)) | 482 | (p->i_key && p1.i_key != p->i_key)) |
483 | continue; | 483 | continue; |
484 | print_tunnel(&p1); | 484 | print_tunnel(&p1); |
485 | puts(""); | 485 | bb_putchar('\n'); |
486 | } | 486 | } |
487 | } | 487 | } |
488 | 488 | ||
@@ -512,7 +512,7 @@ static int do_show(int argc, char **argv) | |||
512 | return -1; | 512 | return -1; |
513 | 513 | ||
514 | print_tunnel(&p); | 514 | print_tunnel(&p); |
515 | puts(""); | 515 | bb_putchar('\n'); |
516 | return 0; | 516 | return 0; |
517 | } | 517 | } |
518 | 518 | ||