mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
Add a DIE("unreachable") in should_claim_process_group_for_job
Fixes a gcc warning.
This commit is contained in:
parent
4a2c709fb1
commit
f58960ba01
1 changed files with 1 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue