summaryrefslogtreecommitdiff
path: root/src/su.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-08-14 07:18:34 +0000
committerJim Meyering <jim@meyering.net>2001-08-14 07:18:34 +0000
commit727433f0db1747d7a9904789e51a2b9c01d9aac5 (patch)
tree06993b3ab679dbe4af2038a767d13efa2e9e16cd /src/su.c
parent1e4a6cbe1c35bd84fd135fffdf23a0d9a50631b1 (diff)
downloadcoreutils-727433f0db1747d7a9904789e51a2b9c01d9aac5.tar.xz
(xputenv): Remove parameter's const qualifier.
Diffstat (limited to 'src/su.c')
-rw-r--r--src/su.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/su.c b/src/su.c
index 27a56d505..d7460859f 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 ();