From d96ee909934f3855135589e0e8d6ece1912c1f22 Mon Sep 17 00:00:00 2001 From: "Martin v. Löwis" Date: Thu, 16 Feb 2006 14:37:16 +0000 Subject: Use Py_ssize_t to count the --- Python/sysmodule.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index b240cc744e1..43c010b8522 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; -- cgit v1.2.3