fsck_minix.c lost fat.
[oweals/busybox.git] / lsmod.c
diff --git a/lsmod.c b/lsmod.c
index 1696f756ed702fcb274cbc8c7f27a8ad05ddc778..d9c40eaaf2deabb5b25da78eb8b5d9f66c36a891 100644 (file)
--- a/lsmod.c
+++ b/lsmod.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  * Mini lsmod implementation for busybox
  *
@@ -30,6 +31,7 @@
 
 extern int lsmod_main(int argc, char **argv)
 {
-    char* cmd[] = { "cat", "/proc/modules", "\0" };
-    exit(cat_main( 3, cmd));
+       char *cmd[] = { "cat", "/proc/modules", "\0" };
+
+       exit(cat_main(3, cmd));
 }