Commit 4d2adcca authored by Guido van Rossum's avatar Guido van Rossum

Make it compile with C89.

parent 2fa74bba
...@@ -1325,8 +1325,9 @@ ast_for_atom(struct compiling *c, const node *n) ...@@ -1325,8 +1325,9 @@ ast_for_atom(struct compiling *c, const node *n)
return Dict(NULL, NULL, LINENO(n), n->n_col_offset, c->c_arena); return Dict(NULL, NULL, LINENO(n), n->n_col_offset, c->c_arena);
} else if (NCH(ch) == 1 || TYPE(CHILD(ch, 1)) == COMMA) { } else if (NCH(ch) == 1 || TYPE(CHILD(ch, 1)) == COMMA) {
/* it's a simple set */ /* it's a simple set */
asdl_seq *elts;
size = (NCH(ch) + 1) / 2; /* +1 in case no trailing comma */ size = (NCH(ch) + 1) / 2; /* +1 in case no trailing comma */
asdl_seq *elts = asdl_seq_new(size, c->c_arena); elts = asdl_seq_new(size, c->c_arena);
if (!elts) if (!elts)
return NULL; return NULL;
for (i = 0; i < NCH(ch); i += 2) { for (i = 0; i < NCH(ch); i += 2) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment