summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-07-03 18:46:36 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-07-03 18:46:36 +0000
commit6d3e77cf7eb22a25da0c69cf189194ad61f2fad4 (patch)
treedefce9ba14b125c1d8134b35ce05057d19eebff2
parente1cf8027cf8a7ec532c5ca87775a2ddc9038bc81 (diff)
(process_signal) [case SIGCHLD]: Correctly place `break' *outside* of
for loop.
-rw-r--r--init/init.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c
index ec3e8d03..d62451a6 100644
--- a/init/init.c
+++ b/init/init.c
@@ -1351,9 +1351,8 @@ killing it and going to single user mode",
}
else if (system_state == MULTI)
restart_terminal (pid);
-
- break;
}
+ break;
}
default:
break;