diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-22 11:40:03 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-22 11:40:03 (GMT) |
commit | 6685128b973981ff57b577f09b0a38e0071d272e (patch) | |
tree | c4d5536244f91e6c818b2ceb6335c56386156629 /Modules/_hotshot.c | |
parent | 26fd9607c729f4dbe322967464834a2bce18c07d (diff) | |
download | cpython-6685128b973981ff57b577f09b0a38e0071d272e.zip cpython-6685128b973981ff57b577f09b0a38e0071d272e.tar.gz cpython-6685128b973981ff57b577f09b0a38e0071d272e.tar.bz2 |
Fix more ssize_t issues.
Diffstat (limited to 'Modules/_hotshot.c')
-rw-r--r-- | Modules/_hotshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index 2ee4eb9..3ad0a9e 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -1420,7 +1420,7 @@ write_header(ProfilerObject *self) char *buffer; char cwdbuffer[PATH_MAX]; PyObject *temp; - int i, len; + Py_ssize_t i, len; buffer = get_version_string(); if (buffer == NULL) { |