changeset 11379:23f7aa711f96

(child_setup) [WINDOWSNT]: Removed syntax errors.
author Karl Heuer <kwzh@gnu.org>
date Wed, 12 Apr 1995 01:59:39 +0000
parents 9020ac98e9d3
children 18e41c75b89a
files src/callproc.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/callproc.c	Wed Apr 12 00:54:22 1995 +0000
+++ b/src/callproc.c	Wed Apr 12 01:59:39 1995 +0000
@@ -808,9 +808,9 @@
 #ifdef WINDOWSNT
   /* Spawn the child.  (See ntproc.c:Spawnve).  */
   cpid = spawnve (_P_NOWAIT, new_argv[0], new_argv, env);
-  if (cpid == -1) {    ????
-      report_file_error ("Spawning child process", Qnil);
-  }
+  if (cpid == -1)
+    /* An error occurred while trying to spawn the process.  */
+    report_file_error ("Spawning child process", Qnil);
   reset_standard_handles (in, out, err, handles);
   return cpid;
 #else /* not WINDOWSNT */