Eliminate compiler warnings.
authorChris Hanson <org/chris-hanson/cph>
Wed, 22 Oct 1997 05:40:53 +0000 (05:40 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 22 Oct 1997 05:40:53 +0000 (05:40 +0000)
v7/src/microcode/uxproc.c

index 8951aaab5dd7604616fb8be4e3f3d73177a5d39e..61631920cfbc7db9fa4ea35d14d3cf6b3c7e217e 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: uxproc.c,v 1.21 1997/10/22 05:25:31 cph Exp $
+$Id: uxproc.c,v 1.22 1997/10/22 05:40:53 cph Exp $
 
 Copyright (c) 1990-97 Massachusetts Institute of Technology
 
@@ -261,7 +261,7 @@ DEFUN (OS_make_subprocess,
   enum process_jc_status child_jc_status;
 
   if (envp == 0)
-    envp = environ;
+    envp = ((CONST char **) environ);
   switch (ctty_type)
     {
     case process_ctty_type_none:
@@ -421,7 +421,7 @@ DEFUN (OS_make_subprocess,
   UX_initialize_child_signals ();
 
   /* Start the process. */
-  execve (filename, argv, envp);
+  execve (filename, ((char * CONST *) argv), ((char * CONST *) envp));
  kill_child:
   _exit (1);
 }