mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +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
|
else
|
||||||
{
|
{
|
||||||
process_t *p;
|
for (process_t *p = j->first_process; p; p=p->next)
|
||||||
|
|
||||||
for (p = j->first_process; p; p=p->next)
|
|
||||||
{
|
{
|
||||||
if (! p->completed)
|
if (! p->completed)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue