From: Jim Meyering Date: Mon, 28 Mar 2005 17:55:43 +0000 (+0000) Subject: (copy_reg): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fbb037ff8e2d0db0baf07ed0eef2d110ed30ad4;p=thirdparty%2Fcoreutils.git (copy_reg): Use NULL, not `0'. --- diff --git a/src/copy.c b/src/copy.c index d9f497e9ca..77bc69aa85 100644 --- a/src/copy.c +++ b/src/copy.c @@ -337,7 +337,7 @@ copy_reg (const char *src_path, const char *dst_path, n_read_total += n_read; - ip = 0; + ip = NULL; if (make_holes) { buf[n_read] = 1; /* Sentinel to stop loop. */ @@ -370,9 +370,9 @@ copy_reg (const char *src_path, const char *dst_path, } else /* Clear to indicate that a normal write is needed. */ - ip = 0; + ip = NULL; } - if (ip == 0) + if (ip == NULL) { size_t n = n_read; if (full_write (dest_desc, buf, n) != n)