projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50af12d
)
Steven Scholz writes:
author
Eric Andersen
<andersen@codepoet.org>
Wed, 6 Aug 2003 08:53:13 +0000
(08:53 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Wed, 6 Aug 2003 08:53:13 +0000
(08:53 -0000)
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
modutils/lsmod.c
patch
|
blob
|
history
diff --git
a/modutils/lsmod.c
b/modutils/lsmod.c
index f1eebfc9f40a5e419cbc6e36ad2d7c8392564b1b..1b914e720ae7e14aa3c876f348d2c71262d911a7 100644
(file)
--- 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