*: style fixes. no code changes (verified with objdump)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -129,9 +129,10 @@ int pgrep_main(int argc UNUSED_PARAM, char **argv)
|
||||
continue;
|
||||
|
||||
/* NB: OPT_INVERT is always 0 or 1 */
|
||||
if (!argv[0] ||
|
||||
(regexec(&re_buffer, cmd, 1, re_match, 0) == 0 /* match found */
|
||||
&& (!OPT_ANCHOR || (re_match[0].rm_so == 0 && re_match[0].rm_eo == (regoff_t)strlen(cmd)))) ^ OPT_INVERT
|
||||
if (!argv[0]
|
||||
|| (regexec(&re_buffer, cmd, 1, re_match, 0) == 0 /* match found */
|
||||
&& (!OPT_ANCHOR || (re_match[0].rm_so == 0 && re_match[0].rm_eo == (regoff_t)strlen(cmd)))
|
||||
) ^ OPT_INVERT
|
||||
) {
|
||||
matched_pid = proc->pid;
|
||||
if (OPT_LAST) {
|
||||
|
Reference in New Issue
Block a user