aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex.c')
-rw-r--r--src/regex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regex.c b/src/regex.c
index 05587dabe9d..fc2a46fd5a3 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -2465,9 +2465,9 @@ regex_compile (const_re_char *pattern, size_t size, reg_syntax_t syntax,
2465 2465
2466 /* These hold the values of p, pattern, and pend from the main 2466 /* These hold the values of p, pattern, and pend from the main
2467 pattern when we have pushed into a subpattern. */ 2467 pattern when we have pushed into a subpattern. */
2468 re_char *main_p IF_LINT (= NULL); 2468 re_char *main_p;
2469 re_char *main_pattern IF_LINT (= NULL); 2469 re_char *main_pattern;
2470 re_char *main_pend IF_LINT (= NULL); 2470 re_char *main_pend;
2471 2471
2472#ifdef DEBUG 2472#ifdef DEBUG
2473 debug++; 2473 debug++;