From ccb0a9ba88ed5ed33390908dca7994447fe2dc32 Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Tue, 12 Sep 2000 16:20:49 +0000
Subject: Formatting cleanup patch from Bryan Rittmeyer <bryan@ixiacom.com>. 
 -Erik

---
 modutils/lsmod.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

(limited to 'modutils/lsmod.c')

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");
 	}
 
 
-- 
cgit v1.2.3-55-g6feb