diff options
| author | Jim Meyering <jim@meyering.net> | 1995-06-01 14:12:51 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1995-06-01 14:12:51 +0000 |
| commit | 85bf8c2e1c017936d7f311f65c5c0fcae12c65f9 (patch) | |
| tree | 6c04fb52f0fa0db6182cbd6a3db48d0e6582be0e /lib/regex.c | |
| parent | merge with 1.11.4b (diff) | |
| download | coreutils-85bf8c2e1c017936d7f311f65c5c0fcae12c65f9.tar.gz coreutils-85bf8c2e1c017936d7f311f65c5c0fcae12c65f9.zip | |
merge with 1.11.5
Diffstat (limited to 'lib/regex.c')
| -rw-r--r-- | lib/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index abe92ac8b..f7e0917b0 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? */ |
