changeset 747:57ccf6402d2a

No need to check for both __MINGW32__ and __MINGW64__, the former is enough.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Dec 2022 13:20:06 +0200
parents a557d1b2a356
children 3f59c5ab7fea
files th_types.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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