From: Jim Meyering Date: Mon, 28 Mar 2005 17:49:12 +0000 (+0000) Subject: (sparse_type_string, reply_args, decode_preserve_arg): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1201 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b2edc18b20f1c829917d703669175fa136986f19;p=thirdparty%2Fcoreutils.git (sparse_type_string, reply_args, decode_preserve_arg): Use NULL, not `0'. --- diff --git a/src/cp.c b/src/cp.c index 546984997a..72d97b295a 100644 --- a/src/cp.c +++ b/src/cp.c @@ -96,7 +96,7 @@ static bool remove_trailing_slashes; static char const *const sparse_type_string[] = { - "never", "auto", "always", 0 + "never", "auto", "always", NULL }; static enum Sparse_type const sparse_type[] = @@ -107,7 +107,7 @@ static enum Sparse_type const sparse_type[] = /* Valid arguments to the `--reply' option. */ static char const* const reply_args[] = { - "yes", "no", "query", 0 + "yes", "no", "query", NULL }; /* The values that correspond to the above strings. */ @@ -741,7 +741,7 @@ decode_preserve_arg (char const *arg, struct cp_options *x, bool on_off) static char const* const preserve_args[] = { "mode", "timestamps", - "ownership", "links", "all", 0 + "ownership", "links", "all", NULL }; char *arg_writable = xstrdup (arg);