summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-04-01 04:58:29 +0000
committerJim Meyering <jim@meyering.net>1999-04-01 04:58:29 +0000
commitd0b9ad729c987822d06fc61be83de01f847c43f9 (patch)
tree04e7d51aa5f293f21e538d3ad0a51c2f5cefb010 /src
parent24df6275fb125fc2561c3b09c2b2a6207da556c1 (diff)
downloadcoreutils-d0b9ad729c987822d06fc61be83de01f847c43f9.tar.xz
(main): Qualify a char* with the `const' keyword.
Diffstat (limited to 'src')
-rw-r--r--src/mv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mv.c b/src/mv.c
index af80fbe92..b8a92099d 100644
--- a/src/mv.c
+++ b/src/mv.c
@@ -365,7 +365,7 @@ main (int argc, char **argv)
int errors;
int make_backups = 0;
int dest_is_dir;
- char *version;
+ const char *version;
struct cp_options x;
program_name = argv[0];