X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fruntime%2Frun-program.c;h=76f39b9015649bd792d373573c68fafd79a72f90;hb=22a6702974b7d6ff4e8f2b3b7b5ff446fc632de0;hp=feb8d8d0d4cac74423d106887b06c141f584f57a;hpb=c03ebb54770cfa613d4b706a80e5be231786a5d0;p=sbcl.git diff --git a/src/runtime/run-program.c b/src/runtime/run-program.c index feb8d8d..76f39b9 100644 --- a/src/runtime/run-program.c +++ b/src/runtime/run-program.c @@ -181,10 +181,10 @@ HANDLE spawn ( } else { wait_mode = P_WAIT; } - + /* Spawn process given on the command line*/ hProcess = (HANDLE) spawnvp ( wait_mode, program, argv ); - + /* Now that the process is launched, replace the original * in/out/err handles */ if ( _dup2 ( fdOut, out ) != 0 ) return (HANDLE)-1;