silly switch style fix
diff --git a/miscutils/setsid.c b/miscutils/setsid.c
index 41d9ef2..347b2ba 100644
--- a/miscutils/setsid.c
+++ b/miscutils/setsid.c
@@ -25,7 +25,7 @@
 		bb_show_usage();
 
 	if (getpgrp() == getpid()) {
-		switch(fork()){
+		switch (fork()){
 		case -1:
 			bb_perror_msg_and_die("fork");
 		case 0: