diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-01-14 08:08:35 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-01-14 08:08:35 +0000 |
commit | c9a1db95b879a593427b6943c876eb682758d127 (patch) | |
tree | 962e614a4e28997fa72164958b8819288c2d4711 /Build/source/texk/kpathsea/knj.c | |
parent | 9fa91bdf68803aecb3477b67d63632bfea37ad84 (diff) |
kpathsea [MinGW32]: Avoid compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@32671 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/knj.c')
-rw-r--r-- | Build/source/texk/kpathsea/knj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/knj.c b/Build/source/texk/kpathsea/knj.c index 174256a915c..52b4a43b9bc 100644 --- a/Build/source/texk/kpathsea/knj.c +++ b/Build/source/texk/kpathsea/knj.c @@ -18,6 +18,7 @@ #include <kpathsea/config.h> #include <kpathsea/debug.h> +#include <wchar.h> int is_cp932_system, file_system_codepage; @@ -324,7 +325,7 @@ fsyscp_system (const char *cmd) *q++ = '"'; *q = '\0'; av[3] = NULL; - ret = fsyscp_spawnvp (_P_WAIT, av[0], av); + ret = fsyscp_spawnvp (_P_WAIT, av[0], (const char* const*) av); free (av[0]); free (av[1]); free (av[2]); |