(xputenv): Remove parameter's const qualifier.
authorJim Meyering <jim@meyering.net>
Tue, 14 Aug 2001 07:18:34 +0000 (07:18 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 14 Aug 2001 07:18:34 +0000 (07:18 +0000)
src/su.c

index 27a56d5..d746085 100644 (file)
--- 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 ();