diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-07-15 07:24:28 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-07-15 07:24:28 +0000 |
commit | 376082647d10be8cb6f417b0554c2ebf38cfb2fe (patch) | |
tree | 791c0e334deda9bef8015378174c11676fc04c56 /Build/source/texk/kpathsea/win32lib.c | |
parent | 7813f69d31d5f32bc397d7586de6a41f67631f5f (diff) |
Replace the deprecated spawnvp() by _spawnvp(), they differ for 64-bit MinGW
git-svn-id: svn://tug.org/texlive/trunk@34617 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/win32lib.c')
-rw-r--r-- | Build/source/texk/kpathsea/win32lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/win32lib.c b/Build/source/texk/kpathsea/win32lib.c index 32d3381a492..35a0267887e 100644 --- a/Build/source/texk/kpathsea/win32lib.c +++ b/Build/source/texk/kpathsea/win32lib.c @@ -411,7 +411,7 @@ int win32_system(const char *cmd) *q++ = '"'; *q = '\0'; av[3] = NULL; - ret = spawnvp(_P_WAIT, av[0], av); + ret = _spawnvp(_P_WAIT, av[0], av); free(av[0]); free(av[1]); free(av[2]); |