aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index 3581b38dbd3..2ccabc12e94 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -2756,7 +2756,7 @@ at_endline_loc_p (p, pend, syntax)
2756{ 2756{
2757 const char *next = p; 2757 const char *next = p;
2758 boolean next_backslash = *next == '\\'; 2758 boolean next_backslash = *next == '\\';
2759 const char *next_next = p + 1 < pend ? p + 1 : NULL; 2759 const char *next_next = p + 1 < pend ? p + 1 : 0;
2760 2760
2761 return 2761 return
2762 /* Before a subexpression? */ 2762 /* Before a subexpression? */