diff options
author | Jim Meyering <jim@meyering.net> | 1999-04-01 05:09:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-04-01 05:09:59 +0000 |
commit | a7d0351c20d4bc2b63e91f972a7b6d845539e0de (patch) | |
tree | c5cf40c2c05715deb31379a9ba8f17520da856b1 | |
parent | beb464c0ea565eead7cba151bfdf84dcc74cf497 (diff) | |
download | coreutils-a7d0351c20d4bc2b63e91f972a7b6d845539e0de.tar.xz |
(install_file_in_dir): 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 146c288aa..4e73679c5 100644 --- a/src/install.c +++ b/src/install.c @@ -446,7 +446,7 @@ static int install_file_in_dir (const char *from, const char *to_dir, const struct cp_options *x) { - char *from_base; + const char *from_base; char *to; int ret; |