mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
symlist: use the right stream
* src/symlist.c (symbol_list_syms_print): Use "f", not stderr.
This commit is contained in:
@@ -88,7 +88,7 @@ symbol_list_syms_print (const symbol_list *l, FILE *f)
|
||||
for (/* Nothing. */; l && l->content.sym; l = l->next)
|
||||
{
|
||||
symbol_print (l->content.sym, f);
|
||||
fprintf (stderr, l->action_props.is_value_used ? " used" : " unused");
|
||||
fprintf (f, l->action_props.is_value_used ? " used" : " unused");
|
||||
if (l && l->content.sym)
|
||||
fprintf (f, ", ");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user