diff options
Diffstat (limited to 'bfd/dwarf2.c')
-rw-r--r-- | bfd/dwarf2.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/bfd/dwarf2.c b/bfd/dwarf2.c index 04a2585..22d6d56 100644 --- a/bfd/dwarf2.c +++ b/bfd/dwarf2.c @@ -573,9 +573,9 @@ read_section (bfd * abfd, if (offset != 0 && offset >= *section_size) { /* xgettext: c-format */ - _bfd_error_handler (_("Dwarf Error: Offset (%lu)" - " greater than or equal to %s size (%lu)."), - (long) offset, section_name, *section_size); + _bfd_error_handler (_("Dwarf Error: Offset (%llu)" + " greater than or equal to %s size (%Lu)."), + (long long) offset, section_name, *section_size); bfd_set_error (bfd_error_bad_value); return FALSE; } @@ -1943,8 +1943,8 @@ read_formatted_entries (struct comp_unit *unit, bfd_byte **bufp, break; default: _bfd_error_handler - (_("Dwarf Error: Unknown format content type %lu."), - (unsigned long) content_type); + (_("Dwarf Error: Unknown format content type %Lu."), + content_type); bfd_set_error (bfd_error_bad_value); return FALSE; } @@ -2047,8 +2047,8 @@ decode_line_info (struct comp_unit *unit, struct dwarf2_debug *stash) if (stash->dwarf_line_size < 16) { _bfd_error_handler - (_("Dwarf Error: Line info section is too small (%ld)"), - (long) stash->dwarf_line_size); + (_("Dwarf Error: Line info section is too small (%Ld)"), + stash->dwarf_line_size); bfd_set_error (bfd_error_bad_value); return NULL; } @@ -2077,8 +2077,8 @@ decode_line_info (struct comp_unit *unit, struct dwarf2_debug *stash) { _bfd_error_handler /* xgettext: c-format */ - (_("Dwarf Error: Line info data is bigger (0x%lx) than the section (0x%lx)"), - (long) lh.total_length, (long) stash->dwarf_line_size); + (_("Dwarf Error: Line info data is bigger (%#Lx) than the section (%#Lx)"), + lh.total_length, stash->dwarf_line_size); bfd_set_error (bfd_error_bad_value); return NULL; } @@ -2854,7 +2854,8 @@ find_abstract_instance_name (struct comp_unit *unit, if (info_ptr == NULL) { _bfd_error_handler - (_("Dwarf Error: Unable to read alt ref %u."), die_ref); + (_("Dwarf Error: Unable to read alt ref %llu."), + (long long) die_ref); bfd_set_error (bfd_error_bad_value); return NULL; } |