pgrep: fix missed change
I missed one change from the commit in the master branch meaning pgrep would not compile. References: commit c8384e682c1cfb3b2dc797e0f8a3cbaaccf7a3da
This commit is contained in:
parent
a55946a7a3
commit
6bbb0bfc80
3
pgrep.c
3
pgrep.c
@ -570,7 +570,8 @@ static struct el * select_procs (int *num)
|
||||
xerrx(EXIT_FATAL,
|
||||
_("Unable to create pid info structure"));
|
||||
which = PIDS_FETCH_TASKS_ONLY;
|
||||
if (opt_threads && !i_am_pkill)
|
||||
// pkill and pwait don't support -w, but this is checked in getopt
|
||||
if (opt_threads)
|
||||
which = PIDS_FETCH_THREADS_TOO;
|
||||
|
||||
while ((stack = procps_pids_get(info, which))) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user