* symmisc.c (dump_msymbols): Cast fprintf_filtered argument to

long.
This commit is contained in:
Tom Tromey
2013-04-09 02:17:17 +00:00
parent 3c790dccaa
commit 4c8429eff1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-04-08 Tom Tromey <tromey@redhat.com>
* symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
long.
2013-04-08 Tom Tromey <tromey@redhat.com> 2013-04-08 Tom Tromey <tromey@redhat.com>
* maint.c (print_bfd_section_info): Print the section index. * maint.c (print_bfd_section_info): Print the section index.

View File

@ -268,7 +268,7 @@ dump_msymbols (struct objfile *objfile, struct ui_file *outfile)
section->the_bfd_section)); section->the_bfd_section));
else else
fprintf_filtered (outfile, " spurious section %ld", fprintf_filtered (outfile, " spurious section %ld",
section - objfile->sections); (long) (section - objfile->sections));
} }
if (SYMBOL_DEMANGLED_NAME (msymbol) != NULL) if (SYMBOL_DEMANGLED_NAME (msymbol) != NULL)
{ {