Formatting.

This commit is contained in:
Calvin Rose 2024-02-17 13:35:07 -06:00
parent 7a2868c147
commit e66dc14b3a
1 changed files with 1 additions and 1 deletions

View File

@ -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 */