mirror of
https://github.com/janet-lang/janet
synced 2024-11-24 09:17:17 +00:00
Formatting.
This commit is contained in:
parent
7a2868c147
commit
e66dc14b3a
@ -505,7 +505,7 @@ static int proc_get_status(JanetProc *proc) {
|
||||
status = WEXITSTATUS(status);
|
||||
} else if (WIFSTOPPED(status)) {
|
||||
status = WSTOPSIG(status) + 128;
|
||||
} else if (WIFSIGNALED(status)){
|
||||
} else if (WIFSIGNALED(status)) {
|
||||
status = WTERMSIG(status) + 128;
|
||||
} else {
|
||||
/* Could possibly return -1 but for now, just panic */
|
||||
|
Loading…
Reference in New Issue
Block a user