mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Trivial cleanup of a function in proc.cpp
This commit is contained in:
parent
fb89e1a26f
commit
f4f2847662
1 changed files with 1 additions and 3 deletions
4
proc.cpp
4
proc.cpp
|
@ -339,9 +339,7 @@ int job_signal(job_t *j, int signal)
|
|||
}
|
||||
else
|
||||
{
|
||||
process_t *p;
|
||||
|
||||
for (p = j->first_process; p; p=p->next)
|
||||
for (process_t *p = j->first_process; p; p=p->next)
|
||||
{
|
||||
if (! p->completed)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue