From 5e678873f9ff7c95d43b278feee547ce989b3b20 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 30 Jan 2006 19:48:23 +0000 Subject: clean up yet more annoying signed/unsigned mismatches and fixup yet more incorrect types --- coreutils/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/install.c') 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])); -- cgit v1.2.3