silly switch style fix

This commit is contained in:
Denis Vlasenko
2006-09-27 19:51:06 +00:00
parent 94d5d82bd8
commit c16bd212e3
8 changed files with 10 additions and 10 deletions

View File

@@ -25,7 +25,7 @@ int setsid_main(int argc, char *argv[])
bb_show_usage();
if (getpgrp() == getpid()) {
switch(fork()){
switch (fork()){
case -1:
bb_perror_msg_and_die("fork");
case 0: