summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-05-31 13:30:06 +0000
committerJim Meyering <jim@meyering.net>1995-05-31 13:30:06 +0000
commitf5ee35a8ddbf8425afd4eb884c37870496a3fa36 (patch)
tree57626fe13467f3a673c354d8e24cd1dd4b20063f
parent9cf806d227ec47ec4023467c257843b487c45167 (diff)
downloadgnulib-f5ee35a8ddbf8425afd4eb884c37870496a3fa36.tar.gz
GNU text utilitiesTEXTUTILS-1_11_5
-rw-r--r--lib/regex.c2
1 files changed, 1 insertions, 1 deletions
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? */