summaryrefslogtreecommitdiffstats
path: root/Python/modsupport.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-08-25 16:07:15 (GMT)
committerGuido van Rossum <guido@python.org>1998-08-25 16:07:15 (GMT)
commit3293b07df58a875afaf3fc82c1e499af59bc99e4 (patch)
tree8f72dc01a6d24e4df800dddd1d406e966c4ea61d /Python/modsupport.c
parent859b407cf12b0bcf6d7d56e48df765664e41e82b (diff)
downloadcpython-3293b07df58a875afaf3fc82c1e499af59bc99e4.zip
cpython-3293b07df58a875afaf3fc82c1e499af59bc99e4.tar.gz
cpython-3293b07df58a875afaf3fc82c1e499af59bc99e4.tar.bz2
Patch by Mark Hammond to support 64-bit ints on MS platforms.
The MS compiler doesn't call it 'long long', it uses __int64, so a new #define, LONG_LONG, has been added and all occurrences of 'long long' are replaced with it.
Diffstat (limited to 'Python/modsupport.c')
-rw-r--r--Python/modsupport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/modsupport.c b/Python/modsupport.c
index 7e1acab..6066aa8 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -293,7 +293,7 @@ do_mkvalue(p_format, p_va)
#if HAVE_LONG_LONG
case 'L':
- return PyLong_FromLongLong((long long)va_arg(*p_va, long long));
+ return PyLong_FromLongLong((LONG_LONG)va_arg(*p_va, LONG_LONG));
#endif
case 'f':