]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcall_process): Cast new_argv for child_setup.
authorRichard M. Stallman <rms@gnu.org>
Sun, 28 Dec 1997 19:19:00 +0000 (19:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 28 Dec 1997 19:19:00 +0000 (19:19 +0000)
src/callproc.c

index 4ded0e8efa534735b091647e4ce806a1ebd12f93..697a3befb1d90d9b868093f72802976a9a3cf031 100644 (file)
@@ -210,6 +210,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
   char *bufptr = buf;
   int bufsize = 16384;
   int count = specpdl_ptr - specpdl;
+
   register unsigned char **new_argv
     = (unsigned char **) alloca ((max (2, nargs - 2)) * sizeof (char *));
   struct buffer *old = current_buffer;
@@ -579,7 +580,8 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
       }
 #else /* not MSDOS */
 #ifdef WINDOWSNT
-    pid = child_setup (filefd, fd1, fd_error, new_argv, 0, current_dir);
+    pid = child_setup (filefd, fd1, fd_error, (char **) new_argv,
+                      0, current_dir);
 #else  /* not WINDOWSNT */
     pid = vfork ();
 
@@ -595,7 +597,8 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
 #else
         setpgrp (pid, pid);
 #endif /* USG */
-       child_setup (filefd, fd1, fd_error, new_argv, 0, current_dir);
+       child_setup (filefd, fd1, fd_error, (char **) new_argv,
+                    0, current_dir);
       }
 #endif /* not WINDOWSNT */