From ab864e9c7156e76863a2375d8117a049cb90bf1b Mon Sep 17 00:00:00 2001 From: Jacques Germishuys Date: Sat, 5 Jul 2014 21:25:20 +0200 Subject: [PATCH] _stat64 is a function, __stat64 is the structure --- src/win32/msvc-compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32/msvc-compat.h b/src/win32/msvc-compat.h index 50865ed17..f79acaacc 100644 --- a/src/win32/msvc-compat.h +++ b/src/win32/msvc-compat.h @@ -15,7 +15,7 @@ # define R_OK 4 /* read mode check */ # define lseek _lseeki64 -# define stat _stat64 +# define stat __stat64 # define fstat _fstat64 /* stat: file mode type testing macros */