mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
long.
This commit is contained in:
@ -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.
|
||||||
|
@ -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)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user