Re: [PATCH] Avoid -Wformat-security in in output_die

2015-02-12 Thread Jason Merrill
OK. Jason

[PATCH] Avoid -Wformat-security in in output_die

2015-02-12 Thread Jakub Jelinek
Hi! While name will not contain any % characters, because it is what dwarf_attr_name returns and there aren't attribute names with % in them, all other spots that call dw2_asm_output_data use "%s", name instead of name, so I think we should do the same here. Ok for trunk if testing succeeds? 201