From cbdee50f29e2d1c44453f7b5ed5d67296f7a16dc Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 13 Jan 2013 14:46:02 +0100 Subject: windows support: fix _wstat misusage I have no idea when or how this broke, but _wstati64() is the function we want anyway (64 bit filesize). Possibly this was a mingw-w64 bug. It's unknown why "wstat()" just doesn't work in this case, as it's not defined by MSDN and could be defined by mingw as it needs. --- osdep/io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'osdep/io.h') diff --git a/osdep/io.h b/osdep/io.h index b69643f0e1..7554b402d4 100644 --- a/osdep/io.h +++ b/osdep/io.h @@ -60,7 +60,7 @@ struct dirent *mp_readdir(DIR *dir); int mp_closedir(DIR *dir); int mp_mkdir(const char *path, int mode); -// NOTE: Stat is not overridden with mp_stat, because MinGW-w64 defines it as +// NOTE: stat is not overridden with mp_stat, because MinGW-w64 defines it as // macro. #define printf(...) mp_printf(__VA_ARGS__) -- cgit v1.2.3