summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/createprocess.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1997-09-02 16:01:39 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1997-09-02 16:01:39 +0000
commit88054d9a9863b6f41b2c42583145e6689752e5f9 (patch)
tree3a05c37b4a16307caa922e731b74a71816d58b90 /otherlibs/win32unix/createprocess.c
parent4c8f23357d3d77ae7683a9ccb7a60ca22e231bf7 (diff)
MAJ portage Win32
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1698 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/createprocess.c')
-rw-r--r--otherlibs/win32unix/createprocess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/win32unix/createprocess.c b/otherlibs/win32unix/createprocess.c
index 64917ba75..8b3c935c0 100644
--- a/otherlibs/win32unix/createprocess.c
+++ b/otherlibs/win32unix/createprocess.c
@@ -41,7 +41,7 @@ value win_create_process_native(cmd, cmdline, env, fd1, fd2, fd3)
if (! CreateProcess(exefile, String_val(cmdline), NULL, NULL,
TRUE, 0, envp, NULL, &si, &pi)) {
_dosmaperr(GetLastError());
- uerror("create_process", exefile);
+ uerror("create_process", cmd);
}
return Val_int(pi.hProcess);
}