replace single-char printf's with bb_putchar

This commit is contained in:
Denis Vlasenko
2008-06-05 06:51:06 +00:00
parent bedfabd500
commit 7d60fc1c0a
3 changed files with 22 additions and 20 deletions

View File

@@ -41,7 +41,7 @@ typedef struct filter_t {
static void print_link_flags(unsigned flags, unsigned mdown)
{
printf("<");
bb_putchar('<');
flags &= ~IFF_RUNNING;
#define _PF(f) if (flags & IFF_##f) { \
flags &= ~IFF_##f; \