Silence warning about set but unused variable inside compile_atom() in non-debug builds

This commit is contained in:
Christian Heimes 2013-07-31 23:47:56 +02:00
parent 4ebc9295d1
commit 5e4d372524
1 changed files with 1 additions and 0 deletions

View File

@ -283,6 +283,7 @@ compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
REQ(n, ATOM);
i = n->n_nchildren;
(void)i; /* Don't warn about set but unused */
REQN(i, 1);
n = n->n_child;
if (n->n_type == LPAR) {