Add a DIE("unreachable") in should_claim_process_group_for_job

Fixes a gcc warning.
This commit is contained in:
ridiculousfish 2019-06-29 11:40:52 -07:00
parent 4a2c709fb1
commit f58960ba01

View file

@ -1038,6 +1038,7 @@ static bool should_claim_process_group_for_job(const shared_ptr<job_t> &j) {
// exec will retain the pgroup.
return false;
}
DIE("unreachable");
}
bool exec_job(parser_t &parser, shared_ptr<job_t> j) {