diff options
author | Alan Modra <amodra@gmail.com> | 2002-12-08 03:34:38 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-12-08 03:34:38 +0000 |
commit | cf3d882d1936f447026d47b98753a147119e76ef (patch) | |
tree | 7ad927028c830b5099d7a04595da045e56365d85 /bfd/coff64-rs6000.c | |
parent | 8d17420c2d569e829b6c3142d39a41b44d2b390c (diff) | |
download | gdb-cf3d882d1936f447026d47b98753a147119e76ef.zip gdb-cf3d882d1936f447026d47b98753a147119e76ef.tar.gz gdb-cf3d882d1936f447026d47b98753a147119e76ef.tar.bz2 |
* bfd-in.h: Comment typo fix. Formatting.
* bfd-in2.h: Regenerate.
* coff64-rs6000.c (xcoff64_openr_next_archived_file): Warning fix.
* elf32-m68hc12.c (m68hc12_elf_set_mach_from_flags): Prototype.
* elf64-mmix.c (mmix_dump_bpo_gregs): Warning fix.
Diffstat (limited to 'bfd/coff64-rs6000.c')
-rw-r--r-- | bfd/coff64-rs6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coff64-rs6000.c b/bfd/coff64-rs6000.c index c4b5622..c13d54b 100644 --- a/bfd/coff64-rs6000.c +++ b/bfd/coff64-rs6000.c @@ -2019,7 +2019,7 @@ xcoff64_openr_next_archived_file (archive, last_file) bfd *archive; bfd *last_file; { - file_ptr filestart; + bfd_vma filestart; if ((xcoff_ardata (archive) == NULL) || ! xcoff_big_format_p (archive)) @@ -2048,7 +2048,7 @@ xcoff64_openr_next_archived_file (archive, last_file) return NULL; } - return _bfd_get_elt_at_filepos (archive, filestart); + return _bfd_get_elt_at_filepos (archive, (file_ptr) filestart); } /* We can't use the usual coff_sizeof_headers routine, because AIX |