(sparse_type_string, reply_args, decode_preserve_arg): Use NULL, not `0'.
authorJim Meyering <jim@meyering.net>
Mon, 28 Mar 2005 17:49:12 +0000 (17:49 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 28 Mar 2005 17:49:12 +0000 (17:49 +0000)
src/cp.c

index 5469849..72d97b2 100644 (file)
--- 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);