about summary refs log tree commit diff
path: root/mdirs.c
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-08-31 17:30:17 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-08-31 17:30:17 +0200
commit66d0eff12fdf31e520493e7c2accb95410dcaec2 (patch)
treef67b59076967ec441daaf7e7c40c1d502a9136bd /mdirs.c
parentdfe09a7c5e3a2273f963d53432ef1686b34547db (diff)
downloadmblaze-66d0eff12fdf31e520493e7c2accb95410dcaec2.tar.gz
mblaze-66d0eff12fdf31e520493e7c2accb95410dcaec2.tar.xz
mblaze-66d0eff12fdf31e520493e7c2accb95410dcaec2.zip
style
Diffstat (limited to 'mdirs.c')
-rw-r--r--mdirs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mdirs.c b/mdirs.c
index e133ed7..31513c4 100644
--- a/mdirs.c
+++ b/mdirs.c
@@ -56,10 +56,10 @@ mdirs(char *fpath)
 
 		if (dotonly && d->d_name[0] != '.')
 			continue;
-		
+
 		mdirs(d->d_name);
 	}
-		
+
 	if (chdir("..") < 0)
 		exit(-1);
 
@@ -71,9 +71,9 @@ main(int argc, char *argv[])
 {
 	int c, i;
 	while ((c = getopt(argc, argv, "")) != -1)
-		switch(c) {
+		switch (c) {
 		default:
-		usage:
+usage:
 			fprintf(stderr, "Usage: mdirs dirs...\n");
 			exit(1);
 		}