changeset 420:27af7c8f1b92

GNU text utilities
author Jim Meyering <jim@meyering.net>
date Wed, 31 May 1995 13:30:06 +0000
parents 3096e38ba55d
children 38c0c56c7f85
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?  */