diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-02-16 14:37:16 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-02-16 14:37:16 (GMT) |
commit | d96ee909934f3855135589e0e8d6ece1912c1f22 (patch) | |
tree | 831f7231c28aecc2be637bc80994e6ccabd009f2 /Python/sysmodule.c | |
parent | f5adf1eb72c755c3f6183199656f18b12a1cb952 (diff) | |
download | cpython-d96ee909934f3855135589e0e8d6ece1912c1f22.zip cpython-d96ee909934f3855135589e0e8d6ece1912c1f22.tar.gz cpython-d96ee909934f3855135589e0e8d6ece1912c1f22.tar.bz2 |
Use Py_ssize_t to count the
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index b240cc7..43c010b 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; |