* coff-ppc.c (dump_toc): Fix up calls to fprintf without a string
literal.
+2009-01-02 Curtis Mackie <curtmackevo@gmail.com>
+
+ PR 9682
+ * coff-ppc.c (dump_toc): Fix up calls to fprintf without a string
+ literal.
+
2008-12-29 Arnold Metselaar <arnold.metselaar@planet.nl>
* coff-z80.c (r_imm32): Fix copy-paste bug that caused z80-objdump to
FILE *file = (FILE *) vfile;
struct list_ele *t;
- fprintf (file, _(h1));
- fprintf (file, _(h2));
- fprintf (file, _(h3));
+ fputs (_(h1), file);
+ fputs (_(h2), file);
+ fputs (_(h3), file);
for (t = head; t != 0; t=t->next)
{