summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-04-01 05:09:59 +0000
committerJim Meyering <jim@meyering.net>1999-04-01 05:09:59 +0000
commita7d0351c20d4bc2b63e91f972a7b6d845539e0de (patch)
treec5cf40c2c05715deb31379a9ba8f17520da856b1
parentbeb464c0ea565eead7cba151bfdf84dcc74cf497 (diff)
downloadcoreutils-a7d0351c20d4bc2b63e91f972a7b6d845539e0de.tar.xz
(install_file_in_dir): Qualify a char* with the `const' keyword.
-rw-r--r--src/install.c2
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;