mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Minor cleanup of proc.cpp
This commit is contained in:
parent
ecab34c787
commit
a868abb55a
1 changed files with 1 additions and 1 deletions
2
proc.cpp
2
proc.cpp
|
@ -825,7 +825,7 @@ static int select_try( job_t *j )
|
|||
int fd = d->param1.pipe_fd[0];
|
||||
// fwprintf( stderr, L"fd %d on job %ls\n", fd, j->command );
|
||||
FD_SET( fd, &fds );
|
||||
maxfd=maxi( maxfd, d->param1.pipe_fd[0] );
|
||||
maxfd = maxi(maxfd, fd);
|
||||
debug( 3, L"select_try on %d\n", fd );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue