diff options
Diffstat (limited to 'bfd/ecoff.c')
-rw-r--r-- | bfd/ecoff.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/ecoff.c b/bfd/ecoff.c index 4fab11c..1f74ca8 100644 --- a/bfd/ecoff.c +++ b/bfd/ecoff.c @@ -2476,11 +2476,11 @@ ecoff_write_object_contents (abfd) asection *current; unsigned int count; bfd_size_type reloc_size; - unsigned long text_size; - unsigned long text_start; - unsigned long data_size; - unsigned long data_start; - unsigned long bss_size; + bfd_size_type text_size; + bfd_vma text_start; + bfd_size_type data_size; + bfd_vma data_start; + bfd_size_type bss_size; PTR buff; struct internal_filehdr internal_f; struct internal_aouthdr internal_a; |