commit | 6685128b973981ff57b577f09b0a38e0071d272e | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Apr 22 11:40:03 2006 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Apr 22 11:40:03 2006 +0000 |
tree | c4d5536244f91e6c818b2ceb6335c56386156629 | |
parent | 26fd9607c729f4dbe322967464834a2bce18c07d [diff] [blame] |
Fix more ssize_t issues.
diff --git a/Python/ast.c b/Python/ast.c index 0b3b485..353514c 100644 --- a/Python/ast.c +++ b/Python/ast.c
@@ -3034,7 +3034,7 @@ if (*s & 0x80) { /* XXX inefficient */ PyObject *w; char *r; - int rn, i; + Py_ssize_t rn, i; w = decode_utf8(&s, end, "utf-16-be"); if (w == NULL) { Py_DECREF(u);