Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-08-06 12:53:13 +0400
committerEric Andersen <andersen@codepoet.org>2003-08-06 12:53:13 +0400
commit4b4e09854c55b060fb36ffc17b7dc08b98a9f387 (patch)
tree36e608be49a477223e1f5da62df48803f37b5322 /modutils
parent50af12dbd6d79a7d9bec457ee452ea03d88be3aa (diff)
Steven Scholz writes:
the output of lsmod (busybox-1.00-pre2) contains IMHO one "\n" too much when using CONFIG_FEATURE_CHECK_TAINTED_MODULE: ~ # lsmod Module Size Used by Tainted: P ds 8364 1 m8xx_pcmcia 5388 1 pcmcia_core 40736 0 [ds m8xx_pcmcia] and this patch from Steven fixes the problem
Diffstat (limited to 'modutils')
-rw-r--r--modutils/lsmod.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c
index f1eebfc9f..1b914e720 100644
--- a/modutils/lsmod.c
+++ b/modutils/lsmod.c
@@ -66,7 +66,6 @@ static void check_tainted(void)
else {
printf(" Not tainted\n");
}
- printf("\n");
}
#endif