summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/otps/win32/mkofm.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-07-15 07:24:28 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-07-15 07:24:28 +0000
commit376082647d10be8cb6f417b0554c2ebf38cfb2fe (patch)
tree791c0e334deda9bef8015378174c11676fc04c56 /Build/source/texk/web2c/otps/win32/mkofm.c
parent7813f69d31d5f32bc397d7586de6a41f67631f5f (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/web2c/otps/win32/mkofm.c')
-rw-r--r--Build/source/texk/web2c/otps/win32/mkofm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/otps/win32/mkofm.c b/Build/source/texk/web2c/otps/win32/mkofm.c
index 9ddd714ecaa..cb6ef4cd8eb 100644
--- a/Build/source/texk/web2c/otps/win32/mkofm.c
+++ b/Build/source/texk/web2c/otps/win32/mkofm.c
@@ -5,5 +5,5 @@
int main(int argc, char *argv[])
{
strcpy(argv[0], "mkofm");
- return spawnvp(_P_WAIT, "mktextfm.exe", (const char* const*)argv);
+ return _spawnvp(_P_WAIT, "mktextfm.exe", (const char* const*)argv);
}