merge from gcc
authorDJ Delorie <dj@redhat.com>
Fri, 2 Jun 2006 15:37:03 +0000 (15:37 +0000)
committerDJ Delorie <dj@redhat.com>
Fri, 2 Jun 2006 15:37:03 +0000 (15:37 +0000)
libiberty/ChangeLog
libiberty/pex-unix.c

index e2899c0..93f8449 100644 (file)
@@ -1,3 +1,8 @@
+2006-06-02  Mark Shinwell  <shinwell@codesourcery.com>
+
+       * pex-unix.c (pex_unix_exec_child): Insert cast when assigning
+       to environ.
+
 2006-06-01  Mark Shinwell  <shinwell@codesourcery.com>
 
        * pex-common.c: New function pex_run_in_environment.
index 91619af..e006e59 100644 (file)
@@ -415,7 +415,7 @@ pex_unix_exec_child (struct pex_obj *obj, int flags, const char *executable,
        }
 
       if (env)
-        environ = env;
+        environ = (char**) env;
 
       if ((flags & PEX_SEARCH) != 0)
        {