mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
2010-09-01 Tristan Gingold <gingold@adacore.com>
* coffcode.h (coff_slurp_line_table): Add a cast. (coff_slurp_reloc_table): Ditto.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2010-09-01 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* coffcode.h (coff_slurp_line_table): Add a cast.
|
||||
(coff_slurp_reloc_table): Ditto.
|
||||
|
||||
2010-08-30 Gunther Nikl <gnikl@users.sourceforge.net>
|
||||
|
||||
* cisco-core.c (cisco_core_file_pid): Define.
|
||||
|
@ -4487,7 +4487,7 @@ coff_slurp_line_table (bfd *abfd, asection *asect)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
(_("%B: warning: illegal symbol index %ld in line numbers"),
|
||||
abfd, dst.l_addr.l_symndx);
|
||||
abfd, (long) symndx);
|
||||
symndx = 0;
|
||||
warned = TRUE;
|
||||
}
|
||||
@ -5123,7 +5123,7 @@ coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
(_("%B: warning: illegal symbol index %ld in relocs"),
|
||||
abfd, dst.r_symndx);
|
||||
abfd, (long) dst.r_symndx);
|
||||
cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
||||
ptr = NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user