changeset 450:2c92405432fe

merge with 1.11.5
author Jim Meyering <jim@meyering.net>
date Thu, 01 Jun 1995 14:12:57 +0000
parents c29f67a3f852
children b08ce70c8b7c
files lib/regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/regex.c
+++ b/lib/regex.c
@@ -2756,7 +2756,7 @@
 {
   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?  */