diff options
author | Denis Vlasenko | 2006-09-27 19:51:06 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-27 19:51:06 +0000 |
commit | c16bd212e341598452b7885d9e4ac2064f417673 (patch) | |
tree | 843350d8cd414849eadca5b65ef8f497834895d2 /miscutils | |
parent | 94d5d82bd84ec65d52c3df92276221d48990f306 (diff) | |
download | busybox-c16bd212e341598452b7885d9e4ac2064f417673.zip busybox-c16bd212e341598452b7885d9e4ac2064f417673.tar.gz |
silly switch style fix
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/setsid.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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: |