From 291e27b496b53d652b97906628615c4f469f160f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 1 Jun 1995 14:12:57 +0000 Subject: [PATCH] merge with 1.11.5 --- lib/regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/regex.c b/lib/regex.c index abe92ac8b7..f7e0917b05 100644 --- a/lib/regex.c +++ b/lib/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