From 19a3ecee20c4008649d1d5e8a80bffe04026a52a Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 29 May 1995 06:15:30 +0000 Subject: [PATCH] (at_endline_loc_p): Use 0, not NULL, in ?: for next_next. --- regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regex.c b/regex.c index 3581b38dbd..2ccabc12e9 100644 --- a/regex.c +++ b/regex.c @@ -2756,7 +2756,7 @@ at_endline_loc_p (p, pend, syntax) { const char *next = p; boolean next_backslash = *next == '\\'; - const char *next_next = p + 1 < pend ? p + 1 : NULL; + const char *next_next = p + 1 < pend ? p + 1 : 0; return /* Before a subexpression? */ -- 2.30.2