diff options
author | Denys Vlasenko | 2016-11-28 01:22:57 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-11-28 01:22:57 +0100 |
commit | 1d3a04a3a4be8682d4317251fc14e81ad655d58a (patch) | |
tree | 2ee72930778afa3a223327fec714c81d936f82dc /procps/pgrep.c | |
parent | 038a977d47c99c3e59d7a2393799b2afa838604c (diff) | |
download | busybox-1d3a04a3a4be8682d4317251fc14e81ad655d58a.zip busybox-1d3a04a3a4be8682d4317251fc14e81ad655d58a.tar.gz |
Code style fixes, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/pgrep.c')
-rw-r--r-- | procps/pgrep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/pgrep.c b/procps/pgrep.c index 974d007..ac82b51 100644 --- a/procps/pgrep.c +++ b/procps/pgrep.c @@ -168,7 +168,7 @@ int pgrep_main(int argc UNUSED_PARAM, char **argv) if (ppid2match >= 0 && ppid2match != proc->ppid) continue; - if (sid2match >= 0 && sid2match != proc->sid) + if (sid2match >= 0 && sid2match != proc->sid) continue; /* NB: OPT_INVERT is always 0 or 1 */ |