PR 6913
authorAlan Modra <amodra@gmail.com>
Wed, 24 Sep 2008 14:38:03 +0000 (14:38 +0000)
committerAlan Modra <amodra@gmail.com>
Wed, 24 Sep 2008 14:38:03 +0000 (14:38 +0000)
* listing.c (print_options): Don't call fprintf without format string.

gas/ChangeLog
gas/listing.c

index e555580..e305b2e 100644 (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.
index 6932e86..d0e2042 100644 (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 == '-')
       {