diff options
author | Jim Meyering <jim@meyering.net> | 2001-08-14 07:18:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-08-14 07:18:34 +0000 |
commit | 727433f0db1747d7a9904789e51a2b9c01d9aac5 (patch) | |
tree | 06993b3ab679dbe4af2038a767d13efa2e9e16cd /src | |
parent | 1e4a6cbe1c35bd84fd135fffdf23a0d9a50631b1 (diff) | |
download | coreutils-727433f0db1747d7a9904789e51a2b9c01d9aac5.tar.xz |
(xputenv): Remove parameter's const qualifier.
Diffstat (limited to 'src')
-rw-r--r-- | src/su.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 (); |