summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/ast.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 9b32f8b..94fc9e8 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -2030,7 +2030,8 @@ alias_for_import_name(struct compiling *c, const node *n)
return alias(NEW_IDENTIFIER(CHILD(n, 0)), NULL, c->c_arena);
else {
/* Create a string of the form "a.b.c" */
- size_t i, len;
+ int i;
+ size_t len;
char *s;
len = 0;