From c7ff90bbbb50453613f777c252077422fa33856b Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 11 Nov 2002 20:21:06 +0000 Subject: [PATCH] Forgot a paren in the MSVC + 64-bit + Intel case. --- PC/pyconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 1d179a45e40..6ff99b63239 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -98,7 +98,7 @@ MS_CORE_DLL. /* set the COMPILER */ #ifdef MS_WIN64 #ifdef _M_IX86 -#define COMPILER _Py_PASTE_VERSION("64 bit (Intel)" +#define COMPILER _Py_PASTE_VERSION("64 bit (Intel)") #else #define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)") #endif