From 3fbb037ff8e2d0db0baf07ed0eef2d110ed30ad4 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 28 Mar 2005 17:55:43 +0000 Subject: [PATCH] (copy_reg): Use NULL, not `0'. --- src/copy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.47.3