diff options
| author | Jim Meyering <jim@meyering.net> | 2005-03-28 17:50:14 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2005-03-28 17:50:14 +0000 |
| commit | 5f107875c516dff0404a7e44db06b98e9d232951 (patch) | |
| tree | 55e3c63fc356b0947d2e92f4250fdc5f42cbf668 /src/mv.c | |
| parent | (sparse_type_string, reply_args, decode_preserve_arg): Use NULL, not `0'. (diff) | |
| download | coreutils-5f107875c516dff0404a7e44db06b98e9d232951.tar.gz coreutils-5f107875c516dff0404a7e44db06b98e9d232951.zip | |
(reply_args): Use NULL, not `0'.
Diffstat (limited to 'src/mv.c')
| -rw-r--r-- | src/mv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* mv -- move or rename files - Copyright (C) 86, 89, 90, 91, 1995-2004 Free Software Foundation, Inc. + Copyright (C) 86, 89, 90, 91, 1995-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -62,7 +62,7 @@ static bool remove_trailing_slashes; /* 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. */ |
