aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-26 00:37:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-26 00:37:00 +0000
commitc6f188def8c5496dbd65c9be6ca3050286db7227 (patch)
treed8e1e56c728628c15f66cb88a6e54f368c806939 /modutils
parente63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff)
downloadbusybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz
busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.bz2
busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.zip
silly size savings and capitalization fixes
Diffstat (limited to 'modutils')
-rw-r--r--modutils/lsmod.c4
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 @@
15 15
16 16
17#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE 17#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
18static void check_tainted(void) { printf("\n"); } 18static void check_tainted(void) { puts(""); }
19#else 19#else
20#define TAINT_FILENAME "/proc/sys/kernel/tainted" 20#define TAINT_FILENAME "/proc/sys/kernel/tainted"
21#define TAINT_PROPRIETORY_MODULE (1<<0) 21#define TAINT_PROPRIETORY_MODULE (1<<0)
@@ -127,7 +127,7 @@ int lsmod_main(int argc, char **argv)
127 } 127 }
128 if (count) printf("]"); 128 if (count) printf("]");
129 129
130 printf("\n"); 130 puts("");
131 } 131 }
132 132
133#ifdef CONFIG_FEATURE_CLEAN_UP 133#ifdef CONFIG_FEATURE_CLEAN_UP