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>2000-09-12 20:20:49 +0400
committerEric Andersen <andersen@codepoet.org>2000-09-12 20:20:49 +0400
commitccb0a9ba88ed5ed33390908dca7994447fe2dc32 (patch)
tree346de18c5baadfab7bbc82093ca7e8164bd53c20 /modutils/lsmod.c
parentfca8050f0fd224a22136b74fce23b700f1d07ccf (diff)
Formatting cleanup patch from Bryan Rittmeyer <bryan@ixiacom.com>.
-Erik
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r--modutils/lsmod.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c
index 945f420e0..bd1cf9c48 100644
--- a/modutils/lsmod.c
+++ b/modutils/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");
}