misc: style fixups
This commit is contained in:
parent
02af093043
commit
07908be090
@ -58,7 +58,7 @@ static int mount_proc(void)
|
||||
if (exists("/proc/version"))
|
||||
return 0;
|
||||
pid = fork();
|
||||
switch(pid) {
|
||||
switch (pid) {
|
||||
case -1:
|
||||
syslog(LOG_ERR, "Unable to fork");
|
||||
return -1;
|
||||
|
@ -45,7 +45,7 @@ static pid_t do_openrc(const char *runlevel)
|
||||
sigset_t signals;
|
||||
|
||||
pid = fork();
|
||||
switch(pid) {
|
||||
switch (pid) {
|
||||
case -1:
|
||||
perror("fork");
|
||||
break;
|
||||
@ -139,7 +139,7 @@ static void reap_zombies(void)
|
||||
|
||||
static void signal_handler(int sig)
|
||||
{
|
||||
switch(sig) {
|
||||
switch (sig) {
|
||||
case SIGINT:
|
||||
handle_shutdown("reboot", RB_AUTOBOOT);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user