diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-22 07:26:00 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-22 07:26:00 +0000 |
commit | 330e84f85f4c230b385fdf2335888cbccb1eee26 (patch) | |
tree | 4b9bc6340864bd424202e872a3b84d1712ad9c2f /Build/source/texk/kpathsea/mingw32.c | |
parent | 63a8ebc9eb71c28299f568dc55f55c92ea09cd93 (diff) |
enable compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@13875 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/mingw32.c')
-rw-r--r-- | Build/source/texk/kpathsea/mingw32.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/mingw32.c b/Build/source/texk/kpathsea/mingw32.c index 69de2af2e1b..3fd649fb658 100644 --- a/Build/source/texk/kpathsea/mingw32.c +++ b/Build/source/texk/kpathsea/mingw32.c @@ -23,9 +23,7 @@ <taco@luatex.org>. */ -#ifndef __MINGW32__ -static int static_variable_mingw32_c = 0; -#else +#ifdef __MINGW32__ #include <kpathsea/config.h> #include <kpathsea/c-proto.h> @@ -1028,4 +1026,4 @@ int win32_system(const char *cmd, int async) return ret; } -#endif +#endif /* __MINGW32__ */ |