diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-02-28 15:51:55 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-02-28 15:51:55 +0100 |
commit | 7794c21daf452912275f0f51d6edd4614c43eccf (patch) | |
tree | aac6a392ff0f96a255de1a830a10a94be386b709 /procps | |
parent | 216e952fb86b1eb3ac29701225d03e4690ac9561 (diff) | |
download | busybox-7794c21daf452912275f0f51d6edd4614c43eccf.tar.gz |
pgrep: fix a "missing closing paren" build error
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps')
-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 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; |