From: Pablo Galindo Date: Tue, 19 Feb 2019 22:51:53 +0000 (+0000) Subject: bpo-36049: Fix compiler warning in Python/ast.c (GH-11949) X-Git-Tag: v3.8.0a2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46a97920feaf4094436b2cdb32d2bd2fab3b59a5;p=thirdparty%2FPython%2Fcpython.git bpo-36049: Fix compiler warning in Python/ast.c (GH-11949) --- diff --git a/Python/ast.c b/Python/ast.c index 5cef3fdadc9a..e721ac1c0a4a 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -3872,7 +3872,7 @@ ast_for_suite(struct compiling *c, const node *n) static void get_last_end_pos(asdl_seq *s, int *end_lineno, int *end_col_offset) { - int tot = asdl_seq_LEN(s); + Py_ssize_t tot = asdl_seq_LEN(s); // There must be no empty suites. assert(tot > 0); stmt_ty last = asdl_seq_GET(s, tot - 1);