From b0252d7363009b47d38e6d39dc32e6611d0d6b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Thu, 15 Feb 2024 18:29:17 -0500 Subject: [PATCH] For reasons lost to history, commit 8b95d6 (18 years ago) disabled long long when compiled with MSVC. Re-enable it. --- src/xpdev/xpprintf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpdev/xpprintf.h b/src/xpdev/xpprintf.h index 940c68ec41..107c7990ed 100644 --- a/src/xpdev/xpprintf.h +++ b/src/xpdev/xpprintf.h @@ -36,7 +36,7 @@ #define XP_PRINTF_TYPE_USHORT XP_PRINTF_TYPE_UINT #define XP_PRINTF_TYPE_LONG 4 #define XP_PRINTF_TYPE_ULONG 5 -#if !defined(_MSC_VER) && !defined(__BORLANDC__) +#if !defined(__BORLANDC__) #define XP_PRINTF_TYPE_LONGLONG 6 #define XP_PRINTF_TYPE_ULONGLONG 7 #endif -- GitLab