mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-28 13:11:15 -03:00
job_get_from_pid: use canonical pid_t type
This commit is contained in:
@@ -566,7 +566,7 @@ job_t *parser_t::job_get(job_id_t id) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
job_t *parser_t::job_get_from_pid(int pid) {
|
||||
job_t *parser_t::job_get_from_pid(pid_t pid) {
|
||||
job_iterator_t jobs;
|
||||
job_t *job;
|
||||
while ((job = jobs.next())) {
|
||||
|
||||
Reference in New Issue
Block a user