diff options
author | Alan Modra <amodra@gmail.com> | 2004-11-19 11:58:02 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-11-19 11:58:02 +0000 |
commit | de52dba4abb83cdac3aae1ecdaa2c5c176b168f6 (patch) | |
tree | b2b562c582ffe666fb20fc374513dfe3531ab7e1 /bfd/nlmcode.h | |
parent | 9cd6d51a560c784509b87b6d5bca7470b43dd9bc (diff) | |
download | fsf-binutils-gdb-de52dba4abb83cdac3aae1ecdaa2c5c176b168f6.zip fsf-binutils-gdb-de52dba4abb83cdac3aae1ecdaa2c5c176b168f6.tar.gz fsf-binutils-gdb-de52dba4abb83cdac3aae1ecdaa2c5c176b168f6.tar.bz2 |
* elf32-arm.c (elf32_arm_finish_dynamic_sections): Warning fix.
* elf32-iq2000.c (iq2000_reloc_type_lookup): C90 function decl.
* nlmcode.h (nlm_write_object_contents): Warning fix.
Diffstat (limited to 'bfd/nlmcode.h')
-rw-r--r-- | bfd/nlmcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/nlmcode.h b/bfd/nlmcode.h index bf41f27..c3d6bca 100644 --- a/bfd/nlmcode.h +++ b/bfd/nlmcode.h @@ -1692,7 +1692,7 @@ nlm_write_object_contents (abfd) /* A weak check on whether the section file positions were reasonable. */ - if (bfd_tell (abfd) > (ufile_ptr) nlm_fixed_header (abfd)->codeImageOffset) + if (bfd_tell (abfd) > nlm_fixed_header (abfd)->codeImageOffset) { bfd_set_error (bfd_error_invalid_operation); goto error_return; |