PR 9682
* coff-ppc.c (dump_toc): Fix up calls to fprintf without a string literal.
This commit is contained in:
parent
4ef2cf8be8
commit
b70b5c14d5
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
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>
|
2008-12-29 Arnold Metselaar <arnold.metselaar@planet.nl>
|
||||||
|
|
||||||
* coff-z80.c (r_imm32): Fix copy-paste bug that caused z80-objdump to
|
* coff-z80.c (r_imm32): Fix copy-paste bug that caused z80-objdump to
|
||||||
|
|
|
@ -1543,9 +1543,9 @@ dump_toc (vfile)
|
||||||
FILE *file = (FILE *) vfile;
|
FILE *file = (FILE *) vfile;
|
||||||
struct list_ele *t;
|
struct list_ele *t;
|
||||||
|
|
||||||
fprintf (file, _(h1));
|
fputs (_(h1), file);
|
||||||
fprintf (file, _(h2));
|
fputs (_(h2), file);
|
||||||
fprintf (file, _(h3));
|
fputs (_(h3), file);
|
||||||
|
|
||||||
for (t = head; t != 0; t=t->next)
|
for (t = head; t != 0; t=t->next)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue