diff options
author | John Gilmore <gnu@cygnus> | 1992-10-15 09:00:09 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-10-15 09:00:09 +0000 |
commit | f8e01940189dfd4a06f8818d4442ce6d39fd9539 (patch) | |
tree | 6100ef7299d0808978b22575fea4c1c4df1ea80d /bfd/aout-adobe.c | |
parent | dac4929a6d43b500b573166e53a6706789c7cad1 (diff) | |
download | gdb-f8e01940189dfd4a06f8818d4442ce6d39fd9539.zip gdb-f8e01940189dfd4a06f8818d4442ce6d39fd9539.tar.gz gdb-f8e01940189dfd4a06f8818d4442ce6d39fd9539.tar.bz2 |
* aout-adobe.c, aoutf1.h, archive.c, bout.c, coff-rs6000.c,
coffcode.h, elf.c, ieee.c, libaout.h, libbfd.c, oasys.c,
sco-core.c: Lint: Second argument of bfd_seek is always file_ptr.
Third argument is SEEK_SET or SEEK_CUR. Result is always 0 or -1.
Diffstat (limited to 'bfd/aout-adobe.c')
-rw-r--r-- | bfd/aout-adobe.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bfd/aout-adobe.c b/bfd/aout-adobe.c index 526d7f8..6a7fb82 100644 --- a/bfd/aout-adobe.c +++ b/bfd/aout-adobe.c @@ -309,7 +309,7 @@ aout_adobe_write_object_contents (abfd) aout_adobe_swap_exec_header_out (abfd, exec_hdr (abfd), &swapped_hdr); - bfd_seek (abfd, 0L, SEEK_SET); + bfd_seek (abfd, (file_ptr) 0, SEEK_SET); bfd_write ((PTR) &swapped_hdr, 1, EXEC_BYTES_SIZE, abfd); /* Now write out the section information. Text first, data next, rest @@ -337,12 +337,11 @@ aout_adobe_write_object_contents (abfd) /* Now write out reloc info, followed by syms and strings */ if (bfd_get_symcount (abfd) != 0) { - bfd_seek (abfd, - (long)(N_SYMOFF(*exec_hdr(abfd))), SEEK_SET); + bfd_seek (abfd, (file_ptr)(N_SYMOFF(*exec_hdr(abfd))), SEEK_SET); aout_32_write_syms (abfd); - bfd_seek (abfd, (long)(N_TRELOFF(*exec_hdr(abfd))), SEEK_SET); + bfd_seek (abfd, (file_ptr)(N_TRELOFF(*exec_hdr(abfd))), SEEK_SET); for (sect = abfd->sections; sect; sect = sect->next) { if (sect->flags & SEC_CODE) { @@ -351,7 +350,7 @@ aout_adobe_write_object_contents (abfd) } } - bfd_seek (abfd, (long)(N_DRELOFF(*exec_hdr(abfd))), SEEK_SET); + bfd_seek (abfd, (file_ptr)(N_DRELOFF(*exec_hdr(abfd))), SEEK_SET); for (sect = abfd->sections; sect; sect = sect->next) { if (sect->flags & SEC_DATA) { |