From: Jim Meyering Date: Thu, 1 Apr 1999 04:58:29 +0000 (+0000) Subject: (main): Qualify a char* with the `const' keyword. X-Git-Tag: FILEUTILS-4_0e~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0b9ad729c987822d06fc61be83de01f847c43f9;p=thirdparty%2Fcoreutils.git (main): Qualify a char* with the `const' keyword. --- diff --git a/src/mv.c b/src/mv.c index af80fbe92f..b8a92099d3 100644 --- a/src/mv.c +++ b/src/mv.c @@ -365,7 +365,7 @@ main (int argc, char **argv) int errors; int make_backups = 0; int dest_is_dir; - char *version; + const char *version; struct cp_options x; program_name = argv[0];