From: Neal Norwitz Date: Fri, 28 Feb 2003 03:16:07 +0000 (+0000) Subject: Remove setting i since it isn't used. Found in unrelated bug 690012. X-Git-Tag: v2.3c1~1652 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f16a3178cd234576bc251df1f3040a2a7c418f7;p=thirdparty%2FPython%2Fcpython.git Remove setting i since it isn't used. Found in unrelated bug 690012. --- diff --git a/Parser/pgen.c b/Parser/pgen.c index f3fdb46d1e13..e90155de5619 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -283,10 +283,7 @@ compile_item(labellist *ll, nfa *nf, node *n, int *pa, int *pb) static void compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb) { - int i; - REQ(n, ATOM); - i = n->n_nchildren; REQN(i, 1); n = n->n_child; if (n->n_type == LPAR) {