summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-28 18:17:02 +0000
committerJim Meyering <jim@meyering.net>2005-03-28 18:17:02 +0000
commiteab72607cc3d0877391147429b22012091624322 (patch)
treec15019f343a229404a6b5d7932338a540fe3cb68 /src
parent1c9ab7efaf40dcfa1ae7b03e37769b576a900bb2 (diff)
downloadcoreutils-eab72607cc3d0877391147429b22012091624322.tar.xz
(docolon): Use NULL, not `0'.
Diffstat (limited to 'src')
-rw-r--r--src/expr.c2
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)