diff options
Diffstat (limited to 'binutils/coffgrok.c')
-rw-r--r-- | binutils/coffgrok.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c index 74e6a7b..eef888f 100644 --- a/binutils/coffgrok.c +++ b/binutils/coffgrok.c @@ -890,12 +890,12 @@ coff_grok (bfd *inabfd) storage = bfd_get_symtab_upper_bound (abfd); if (storage < 0) - bfd_fatal (abfd->filename); + bfd_fatal (bfd_get_filename (abfd)); syms = (asymbol **) xmalloc (storage); symcount = bfd_canonicalize_symtab (abfd, syms); if (symcount < 0) - bfd_fatal (abfd->filename); + bfd_fatal (bfd_get_filename (abfd)); rawsyms = obj_raw_syments (abfd); rawcount = obj_raw_syment_count (abfd); tindex = (struct coff_symbol **) (xcalloc (sizeof (struct coff_symbol *), rawcount)); |