From: Jim Meyering Date: Tue, 14 Aug 2001 07:18:34 +0000 (+0000) Subject: (xputenv): Remove parameter's const qualifier. X-Git-Tag: TEXTUTILS-2_0_15~413 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=727433f0db1747d7a9904789e51a2b9c01d9aac5;p=thirdparty%2Fcoreutils.git (xputenv): Remove parameter's const qualifier. --- diff --git a/src/su.c b/src/su.c index 27a56d5058..d7460859fc 100644 --- a/src/su.c +++ b/src/su.c @@ -180,7 +180,7 @@ static struct option const longopts[] = /* Add VAL to the environment, checking for out of memory errors. */ static void -xputenv (const char *val) +xputenv (char *val) { if (putenv (val)) xalloc_die ();