From: Akim Demaille Date: Fri, 1 Feb 2013 13:23:49 +0000 (+0100) Subject: symlist: use the right stream X-Git-Tag: v2.7.90~121 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/e6c25014bb566595d7de92696c8f67d63dbcf4a9?ds=sidebyside symlist: use the right stream * src/symlist.c (symbol_list_syms_print): Use "f", not stderr. --- diff --git a/src/symlist.c b/src/symlist.c index 13759e30..f9ec837c 100644 --- a/src/symlist.c +++ b/src/symlist.c @@ -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, ", "); }