diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 18:17:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 18:17:02 +0000 |
commit | eab72607cc3d0877391147429b22012091624322 (patch) | |
tree | c15019f343a229404a6b5d7932338a540fe3cb68 | |
parent | 1c9ab7efaf40dcfa1ae7b03e37769b576a900bb2 (diff) | |
download | coreutils-eab72607cc3d0877391147429b22012091624322.tar.xz |
(docolon): Use NULL, not `0'.
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 9c6b12e6e..d85cd697f 100644 --- a/src/expr.c +++ b/src/expr.c @@ -437,7 +437,7 @@ of the basic regular expression is not portable; it is being ignored"), if (re_buffer.allocated < len) xalloc_die (); re_buffer.buffer = xmalloc (re_buffer.allocated); - re_buffer.translate = 0; + re_buffer.translate = NULL; re_syntax_options = RE_SYNTAX_POSIX_BASIC; errmsg = re_compile_pattern (pv->u.s, len, &re_buffer); if (errmsg) |