From: Jim Meyering <jim@meyering.net>
Date: Wed, 31 May 1995 13:30:06 +0000 (+0000)
Subject: GNU text utilities
X-Git-Tag: TEXTUTILS-1_11_5
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=f5ee35a8ddbf8425afd4eb884c37870496a3fa36;p=gnulib.git

GNU text utilities
---

diff --git a/lib/regex.c b/lib/regex.c
index 3581b38dbd..2ccabc12e9 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?  */