diff options
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/lsmod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 01e1c5539..09b03d029 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c | |||
@@ -15,7 +15,7 @@ | |||
15 | 15 | ||
16 | 16 | ||
17 | #if !ENABLE_FEATURE_CHECK_TAINTED_MODULE | 17 | #if !ENABLE_FEATURE_CHECK_TAINTED_MODULE |
18 | static void check_tainted(void) { puts(""); } | 18 | static void check_tainted(void) { bb_putchar('\n'); } |
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) |
@@ -128,7 +128,7 @@ int lsmod_main(int argc, char **argv) | |||
128 | } | 128 | } |
129 | if (count) printf("]"); | 129 | if (count) printf("]"); |
130 | 130 | ||
131 | puts(""); | 131 | bb_putchar('\n'); |
132 | } | 132 | } |
133 | 133 | ||
134 | #if ENABLE_FEATURE_CLEAN_UP | 134 | #if ENABLE_FEATURE_CLEAN_UP |
@@ -178,7 +178,7 @@ int lsmod_main(int argc, char **argv) | |||
178 | } | 178 | } |
179 | printf(" %s", tok); | 179 | printf(" %s", tok); |
180 | } | 180 | } |
181 | puts(""); | 181 | bb_putchar('\n'); |
182 | free(line); | 182 | free(line); |
183 | } | 183 | } |
184 | fclose(file); | 184 | fclose(file); |