mirror of
https://github.com/janet-lang/janet
synced 2025-10-04 18:42:29 +00:00
Formatting.
This commit is contained in:
@@ -505,7 +505,7 @@ static int proc_get_status(JanetProc *proc) {
|
|||||||
status = WEXITSTATUS(status);
|
status = WEXITSTATUS(status);
|
||||||
} else if (WIFSTOPPED(status)) {
|
} else if (WIFSTOPPED(status)) {
|
||||||
status = WSTOPSIG(status) + 128;
|
status = WSTOPSIG(status) + 128;
|
||||||
} else if (WIFSIGNALED(status)){
|
} else if (WIFSIGNALED(status)) {
|
||||||
status = WTERMSIG(status) + 128;
|
status = WTERMSIG(status) + 128;
|
||||||
} else {
|
} else {
|
||||||
/* Could possibly return -1 but for now, just panic */
|
/* Could possibly return -1 but for now, just panic */
|
||||||
|
Reference in New Issue
Block a user