diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
commit | c6f188def8c5496dbd65c9be6ca3050286db7227 (patch) | |
tree | d8e1e56c728628c15f66cb88a6e54f368c806939 /modutils | |
parent | e63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff) | |
download | busybox-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz |
silly size savings and capitalization fixes
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/lsmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 2bf4afbe9..f462aafc3 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c @@ -15,7 +15,7 @@ #ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE -static void check_tainted(void) { printf("\n"); } +static void check_tainted(void) { puts(""); } #else #define TAINT_FILENAME "/proc/sys/kernel/tainted" #define TAINT_PROPRIETORY_MODULE (1<<0) @@ -127,7 +127,7 @@ int lsmod_main(int argc, char **argv) } if (count) printf("]"); - printf("\n"); + puts(""); } #ifdef CONFIG_FEATURE_CLEAN_UP |