Replace 0/1 with true/false in calls to job_reap

This commit is contained in:
Mahmoud Al-Qudsi
2018-11-18 17:37:54 -06:00
parent d0085cae3c
commit 3d557518d5
5 changed files with 8 additions and 8 deletions

View File

@@ -1251,7 +1251,7 @@ parse_execution_result_t parse_execution_context_t::run_1_job(tnode_t<g::job> jo
profile_item->skipped = !populated_job;
}
job_reap(0); // clean up jobs
job_reap(false); // clean up jobs
return parse_execution_success;
}