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 /selinux/getsebool.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 'selinux/getsebool.c')
-rw-r--r-- | selinux/getsebool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selinux/getsebool.c b/selinux/getsebool.c index 06a298061..598a51cc0 100644 --- a/selinux/getsebool.c +++ b/selinux/getsebool.c | |||
@@ -53,7 +53,7 @@ int getsebool_main(int argc, char **argv) | |||
53 | printf("%s --> %s", names[i], (active ? "on" : "off")); | 53 | printf("%s --> %s", names[i], (active ? "on" : "off")); |
54 | if (pending != active) | 54 | if (pending != active) |
55 | printf(" pending: %s", (pending ? "on" : "off")); | 55 | printf(" pending: %s", (pending ? "on" : "off")); |
56 | putchar('\n'); | 56 | bb_putchar('\n'); |
57 | } | 57 | } |
58 | 58 | ||
59 | if (ENABLE_FEATURE_CLEAN_UP) { | 59 | if (ENABLE_FEATURE_CLEAN_UP) { |