From: Jim Meyering Date: Mon, 28 Mar 2005 18:17:02 +0000 (+0000) Subject: (docolon): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eab72607cc3d0877391147429b22012091624322;p=thirdparty%2Fcoreutils.git (docolon): Use NULL, not `0'. --- diff --git a/src/expr.c b/src/expr.c index 9c6b12e6e5..d85cd697fd 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)