Revert "glib/gstdio: simplify GStatBuf macro condition for win64"

This reverts commit ae1cccaa0a.

It broke ABI on 64-bit builds with MSVC, as discussed here:
https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2449#note_1430571.

Fixes: #2633
This commit is contained in:
Philip Withnall 2022-04-25 14:27:43 +01:00
parent a44a0c07bd
commit b56f10c890

View File

@ -44,7 +44,7 @@ G_BEGIN_DECLS
typedef struct _stat32 GStatBuf;
#elif defined(_WIN64)
#elif defined(__MINGW64_VERSION_MAJOR) && defined(_WIN64)
typedef struct _stat64 GStatBuf;