diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-05 06:51:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-05 06:51:06 +0000 |
commit | 7d60fc1c0a96983d0909f50f8db26ca1b770b039 (patch) | |
tree | 91c28e9c23da1ae55d5b2c82d16fe39b340f40dc /networking | |
parent | bedfabd500b5dd684ac0b0780147a81bbb37f084 (diff) | |
download | busybox-w32-7d60fc1c0a96983d0909f50f8db26ca1b770b039.tar.gz busybox-w32-7d60fc1c0a96983d0909f50f8db26ca1b770b039.tar.bz2 busybox-w32-7d60fc1c0a96983d0909f50f8db26ca1b770b039.zip |
replace single-char printf's with bb_putchar
Diffstat (limited to 'networking')
-rw-r--r-- | networking/libiproute/ipaddress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index 4bc87e7b8..3bf854e11 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -41,7 +41,7 @@ typedef struct filter_t { | |||
41 | 41 | ||
42 | static void print_link_flags(unsigned flags, unsigned mdown) | 42 | static void print_link_flags(unsigned flags, unsigned mdown) |
43 | { | 43 | { |
44 | printf("<"); | 44 | bb_putchar('<'); |
45 | flags &= ~IFF_RUNNING; | 45 | flags &= ~IFF_RUNNING; |
46 | #define _PF(f) if (flags & IFF_##f) { \ | 46 | #define _PF(f) if (flags & IFF_##f) { \ |
47 | flags &= ~IFF_##f; \ | 47 | flags &= ~IFF_##f; \ |