From a7d0351c20d4bc2b63e91f972a7b6d845539e0de Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 1 Apr 1999 05:09:59 +0000 Subject: [PATCH] (install_file_in_dir): Qualify a char* with the `const' keyword. --- src/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.c b/src/install.c index 146c288..4e73679 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; -- 2.7.4