fix(hydra-eval-jobs): fix typo

This commit is contained in:
Kayla Firestack 2022-04-29 13:06:16 -04:00
parent 62cdbc4138
commit 2cdd7974de

View file

@ -31,7 +31,7 @@ void check_pid_status_nonblocking(pid_t check_pid) {
int wstatus = 0;
pid_t pid = waitpid(check_pid, &wstatus, WNOHANG);
// -1 = failiure, WNOHANG: 0 = no change
// -1 = failure, WNOHANG: 0 = no change
if (pid <= 0) { return; }
std::cerr << "child process (" << pid << ") ";