# HG changeset patch # User Matti Hamalainen # Date 1671621606 -7200 # Node ID 57ccf6402d2a9ae502c0c5afb0b627d4e3cb2766 # Parent a557d1b2a35627a0b48cfcd1c86c0e90f4408ca8 No need to check for both __MINGW32__ and __MINGW64__, the former is enough. diff -r a557d1b2a356 -r 57ccf6402d2a th_types.h --- a/th_types.h Wed Dec 21 13:19:02 2022 +0200 +++ b/th_types.h Wed Dec 21 13:20:06 2022 +0200 @@ -15,8 +15,8 @@ // Meh, this is a hack due to the crap non-portability of 64bit -// printf PRI* type specifiers/modifiers -#if !defined(TH_USE_BONK_TYPES) && (defined(__MINGW32__) || defined(__MINGW64__)) +// printf() PRI* type specifiers/modifiers +#if !defined(TH_USE_BONK_TYPES) && defined(__MINGW32__) # define __USE_MINGW_ANSI_STDIO 1 #endif