Fix spelling errors.
[oweals/busybox.git] / sync.c
diff --git a/sync.c b/sync.c
index cb4690c0238826f919ac587908217241febf9fd5..33c79228d7108f5398aee9492cd9824f8dccd3ce 100644 (file)
--- a/sync.c
+++ b/sync.c
@@ -1,3 +1,4 @@
+/* vi: set sw=4 ts=4: */
 /*
  * Mini sync implementation for busybox
  *
 #include "internal.h"
 #include <stdio.h>
 
-extern int
-sync_main(int argc, char * * argv)
+extern int sync_main(int argc, char **argv)
 {
-    if ( argc>1 && **(argv+1) == '-' ) {
-       usage( "sync\nWrite all buffered filesystem blocks to disk.\n");
-    }
-    exit( sync());
+       if (argc > 1 && **(argv + 1) == '-') {
+               usage("sync\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+                               "\nWrite all buffered filesystem blocks to disk.\n"
+#endif
+                               );
+       }
+       exit(sync());
 }
-