diff options
Diffstat (limited to 'coreutils/install.c')
-rw-r--r-- | coreutils/install.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/install.c b/coreutils/install.c index c3d4f8c82..e58cac931 100644 --- a/coreutils/install.c +++ b/coreutils/install.c @@ -115,7 +115,7 @@ extern int install_main(int argc, char **argv) ? 0 : S_ISDIR(statbuf.st_mode); } for (i = optind; i < argc - 1; i++) { - unsigned char *dest; + char *dest; dest = argv[argc - 1]; if (isdir) dest = concat_path_file(argv[argc - 1], basename(argv[i])); |