From: Jim Meyering Date: Thu, 1 Apr 1999 04:56:28 +0000 (+0000) Subject: (main): Move the declaration of `e' into the scope X-Git-Tag: FILEUTILS-4_0e~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24df6275fb125fc2561c3b09c2b2a6207da556c1;p=thirdparty%2Fcoreutils.git (main): Move the declaration of `e' into the scope where it's used and make it `const'. --- diff --git a/src/chown.c b/src/chown.c index 9ca3c7680c..a91e886c8d 100644 --- a/src/chown.c +++ b/src/chown.c @@ -324,7 +324,6 @@ main (int argc, char **argv) gid_t group = (uid_t) -1; /* New gid; -1 if not to be changed. */ int errors = 0; int optc; - char *e; program_name = argv[0]; setlocale (LC_ALL, ""); @@ -385,7 +384,8 @@ main (int argc, char **argv) } else { - e = parse_user_spec (argv[optind], &user, &group, &username, &groupname); + const char *e = parse_user_spec (argv[optind], &user, &group, + &username, &groupname); if (e) error (1, 0, "%s: %s", argv[optind], e); if (username == NULL)