From: Richard Stallman Date: Sat, 4 Apr 1998 00:00:06 +0000 (+0000) Subject: (regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4b339a2f68d3f2b890becb0a0ff153ad27a97ac;p=pspp (regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error. --- diff --git a/regex.c b/regex.c index a26c0f57a6..5f79663f23 100644 --- a/regex.c +++ b/regex.c @@ -2973,7 +2973,7 @@ regex_compile (pattern, size, syntax, bufp) if (fail_stack.size < re_max_failures * TYPICAL_FAILURE_SIZE) { - fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE); + fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE; #ifdef emacs if (! fail_stack.stack)