summaryrefslogtreecommitdiff
path: root/Modules/md5module.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-11-06 13:01:15 -0800
committerBenjamin Peterson <benjamin@python.org>2016-11-06 13:01:15 -0800
commit1bcaf3a5f3cef733a03bd15dc30d60289959402b (patch)
treed606b56c2f0628b12e0b5a954f782689955de594 /Modules/md5module.c
parent4abfe80e5524cebcb6c493f7a67f2c2587715a69 (diff)
parentbc82b552cc77e925e85c96b70df3bf3cafda1565 (diff)
downloadcpython-1bcaf3a5f3cef733a03bd15dc30d60289959402b.tar.gz
merge 3.5
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r--Modules/md5module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c
index f94acc7513..04bc06e4b7 100644
--- a/Modules/md5module.c
+++ b/Modules/md5module.c
@@ -30,7 +30,7 @@ class MD5Type "MD5object *" "&PyType_Type"
#if SIZEOF_INT == 4
typedef unsigned int MD5_INT32; /* 32-bit integer */
-typedef PY_LONG_LONG MD5_INT64; /* 64-bit integer */
+typedef long long MD5_INT64; /* 64-bit integer */
#else
/* not defined. compilation will die. */
#endif