* listing.c (print_options): Don't call fprintf without format string.
This commit is contained in:
Alan Modra 2008-09-24 14:38:03 +00:00
parent 725569295b
commit ead47374e6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-09-25 Alan Modra <amodra@bigpond.net.au>
PR 6913
* listing.c (print_options): Don't call fprintf without format string.
2008-09-19 Alan Modra <amodra@bigpond.net.au>
* write.c (TC_FORCE_RELOCATION_SUB_LOCAL): Heed md_register_arithmetic.

View File

@ -1100,7 +1100,7 @@ print_options (char ** argv)
int pos = strlen (field_name);
char **p;
fprintf (list_file, field_name);
fputs (field_name, list_file);
for (p = &argv[1]; *p != NULL; p++)
if (**p == '-')
{