commit: 07908be0903229a69b9e0f733ed13eeff0b55a44
Author: Austin English <austinenglish <AT> gmail <DOT> com>
AuthorDate: Fri Oct 12 22:16:33 2018 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sat Oct 13 16:53:54 2018 +0000
URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=07908be0
misc: style fixups
src/rc/kill_all.c | 2 +-
src/rc/openrc-init.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/rc/kill_all.c b/src/rc/kill_all.c
index 0833e5f8..bc079dea 100644
--- a/src/rc/kill_all.c
+++ b/src/rc/kill_all.c
@@ -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;
diff --git a/src/rc/openrc-init.c b/src/rc/openrc-init.c
index e02fa5ee..e557c63d 100644
--- a/src/rc/openrc-init.c
+++ b/src/rc/openrc-init.c
@@ -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;