From 0e72e82f047af7a9030f71d7883f480ac63da7de Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 24 Sep 2008 14:38:03 +0000 Subject: PR 6913 * listing.c (print_options): Don't call fprintf without format string. --- gas/listing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gas/listing.c') diff --git a/gas/listing.c b/gas/listing.c index 6932e8679b..d0e20429db 100644 --- a/gas/listing.c +++ b/gas/listing.c @@ -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 == '-') { -- cgit v1.2.1