diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-01 05:08:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-01 05:08:22 +0000 |
commit | beb464c0ea565eead7cba151bfdf84dcc74cf497 (patch) | |
tree | dd88fc170fc1e53ffbeb37fe86270feb49123eef | |
parent | d8a18c33e8d1d835bc9a1a2aa0d01ea9513b9e53 (diff) | |
download | coreutils-beb464c0ea565eead7cba151bfdf84dcc74cf497.tar.xz |
(main): Qualify a char* with the `const' keyword.
-rw-r--r-- | src/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.c b/src/install.c index 3c9fbee59..146c288aa 100644 --- a/src/install.c +++ b/src/install.c @@ -229,7 +229,7 @@ main (int argc, char **argv) int errors = 0; const char *symbolic_mode = NULL; int make_backups = 0; - char *version; + const char *version; int mkdir_and_install = 0; struct cp_options x; int n_files; |