From: Denys Vlasenko Date: Thu, 28 Feb 2013 14:51:55 +0000 (+0100) Subject: pgrep: fix a "missing closing paren" build error X-Git-Tag: 1_22_0~261 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7794c21daf452912275f0f51d6edd4614c43eccf;p=oweals%2Fbusybox.git pgrep: fix a "missing closing paren" build error Signed-off-by: Denys Vlasenko --- diff --git a/procps/pgrep.c b/procps/pgrep.c index 7616027b7..8daf5b28a 100644 --- a/procps/pgrep.c +++ b/procps/pgrep.c @@ -128,7 +128,7 @@ int pgrep_main(int argc UNUSED_PARAM, char **argv) bb_show_usage(); if (argv[0]) - xregcomp(&re_buffer, argv[0], OPT_ANCHOR ? REG_EXTENDED : (REG_EXTENDED|REG_NOSUB); + xregcomp(&re_buffer, argv[0], OPT_ANCHOR ? REG_EXTENDED : (REG_EXTENDED|REG_NOSUB)); matched_pid = 0; cmd_last = NULL;