about summary refs log tree commit diff
path: root/msort.c
diff options
context:
space:
mode:
Diffstat (limited to 'msort.c')
-rw-r--r--msort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/msort.c b/msort.c
index e364a83..cdb7d4b 100644
--- a/msort.c
+++ b/msort.c
@@ -1,5 +1,5 @@
-#include <sys/types.h>
 #include <sys/stat.h>
+#include <sys/types.h>
 
 #include <ctype.h>
 #include <stdio.h>
@@ -300,7 +300,7 @@ main(int argc, char *argv[])
 	int c, i;
 
 	while ((c = getopt(argc, argv, "fdsFMSUIr")) != -1)
-		switch(c) {
+		switch (c) {
 		case 'f': addorder(fromorder); break;
 		case 'd': addorder(dateorder); break;
 		case 's': addorder(subjorder); break;