From e6c25014bb566595d7de92696c8f67d63dbcf4a9 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Fri, 1 Feb 2013 14:23:49 +0100 Subject: [PATCH] symlist: use the right stream * src/symlist.c (symbol_list_syms_print): Use "f", not stderr. --- src/symlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, ", "); } -- 2.50.0