summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-11-11 20:21:06 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-11-11 20:21:06 (GMT)
commitc7ff90bbbb50453613f777c252077422fa33856b (patch)
treece6bf0f15556c4dd12b9a557ccdf613b8cf2601f /PC
parent37dfb01766d3c2a668ea51ae07fa0f420625a989 (diff)
downloadcpython-c7ff90bbbb50453613f777c252077422fa33856b.zip
cpython-c7ff90bbbb50453613f777c252077422fa33856b.tar.gz
cpython-c7ff90bbbb50453613f777c252077422fa33856b.tar.bz2
Forgot a paren in the MSVC + 64-bit + Intel case.
Diffstat (limited to 'PC')
-rw-r--r--PC/pyconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
index 1d179a4..6ff99b6 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