summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index b240cc744e..43c010b852 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -947,7 +947,8 @@ static void
svnversion_init(void)
{
const char *python, *br_start, *br_end, *br_end2, *svnversion;
- int len, istag;
+ Py_ssize_t len;
+ int istag;
if (svn_initialized)
return;