diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-11 18:06:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-11 18:06:02 +0000 |
commit | b1c9469f65261aff2f2dc7b46cdb4864a728e951 (patch) | |
tree | 3081cafc9686a4a671104bc02770aaef38046015 | |
parent | aaab46baba8fd25373f84fe93b1fccffd8791dea (diff) | |
download | busybox-b1c9469f65261aff2f2dc7b46cdb4864a728e951.tar.gz |
Patch from Robert Schwebel fixing a missing \n
-rw-r--r-- | modutils/lsmod.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c index 0d5ac756b..b87a26a57 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c @@ -67,6 +67,7 @@ static void check_tainted(void) else { printf(" Not tainted\n"); } + printf("\n"); } #endif |