diff --git a/src/reader.c b/src/reader.c index 11dc07bc..8f77fc72 100644 --- a/src/reader.c +++ b/src/reader.c @@ -64,10 +64,10 @@ grammar_start_symbols_add (symbol_list *syms) if (first) { duplicate_directive ("%start", first->sym_loc, l->sym_loc); - symbol_list *dup = l; + symbol_list *dupl = l; l = l->next; - dup->next = NULL; - symbol_list_free (dup); + dupl->next = NULL; + symbol_list_free (dupl); } else {