aboutsummaryrefslogtreecommitdiff
path: root/lsmod.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-12 16:20:49 +0000
committerEric Andersen <andersen@codepoet.org>2000-09-12 16:20:49 +0000
commitccb0a9ba88ed5ed33390908dca7994447fe2dc32 (patch)
tree346de18c5baadfab7bbc82093ca7e8164bd53c20 /lsmod.c
parentfca8050f0fd224a22136b74fce23b700f1d07ccf (diff)
downloadbusybox-ccb0a9ba88ed5ed33390908dca7994447fe2dc32.tar.gz
Formatting cleanup patch from Bryan Rittmeyer <bryan@ixiacom.com>.
-Erik
Diffstat (limited to 'lsmod.c')
-rw-r--r--lsmod.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lsmod.c b/lsmod.c
index 945f420e0..bd1cf9c48 100644
--- a/lsmod.c
+++ b/lsmod.c
@@ -100,21 +100,21 @@ extern int lsmod_main(int argc, char **argv)
for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
printf("%s%s", dn, (j==count-1)? "":" ");
}
- if (count) printf("]");
- printf("\n");
+ if (count) printf("] ");
if (info.flags & NEW_MOD_DELETED)
- printf(" (deleted)");
+ printf("(deleted)");
else if (info.flags & NEW_MOD_INITIALIZING)
- printf(" (initializing)");
+ printf("(initializing)");
else if (!(info.flags & NEW_MOD_RUNNING))
- printf(" (uninitialized)");
+ printf("(uninitialized)");
else {
if (info.flags & NEW_MOD_AUTOCLEAN)
- printf(" (autoclean)");
+ printf("(autoclean)");
if (!(info.flags & NEW_MOD_USED_ONCE))
- printf(" (unused)");
+ printf("(unused)");
}
+ printf("\n");
}