diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-09-04 13:45:56 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-09-04 13:45:56 +0000 |
commit | 0efc0065fc1c1f1709ffd9abeee1751409c2170a (patch) | |
tree | 7e9e59e604771b609405ed77fff0c938a6205812 /otherlibs/win32unix/dup2.c | |
parent | 1e664b94467a65841e63d2dea50cd1f64e8a3258 (diff) |
Debug, tests
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1701 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/dup2.c')
-rw-r--r-- | otherlibs/win32unix/dup2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/win32unix/dup2.c b/otherlibs/win32unix/dup2.c index a7eb8ee91..d14083c0b 100644 --- a/otherlibs/win32unix/dup2.c +++ b/otherlibs/win32unix/dup2.c @@ -21,7 +21,7 @@ value unix_dup2(value fd1, value fd2) /* ML */ oldh = Handle_val(fd2); if (! DuplicateHandle(GetCurrentProcess(), Handle_val(fd1), GetCurrentProcess(), &newh, - 0L, inherit, DUPLICATE_SAME_ACCESS)) { + 0L, TRUE, DUPLICATE_SAME_ACCESS)) { _dosmaperr(GetLastError()); return -1; } |