summaryrefslogtreecommitdiff
path: root/bfd/cpu-arm.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2003-05-09 11:35:35 +0000
committerAlan Modra <amodra@gmail.com>2003-05-09 11:35:35 +0000
commit60d8b5244dbca59d8f17500cc9a09cb6f3daeb38 (patch)
treebde872b2c60bea1c4b4bb4532457ba28604bb3f7 /bfd/cpu-arm.c
parente57b535673bf8d486684a8c38023b9bd146d8b9f (diff)
downloadbinutils-gdb-60d8b5244dbca59d8f17500cc9a09cb6f3daeb38.tar.gz
* cpu-arm.c (arm_check_note): Warning fix.
* elf32-iq2000.c (iq2000_elf_check_relocs): Warning fixes. Arrange to keep relocs if edited. (iq2000_elf_print_private_bfd_data): Return TRUE. * elfxx-ia64.c (elfNN_ia64_relax_section): Use ELFNN_R_SYM, not ELF64_R_SYM. (elfNN_ia64_relax_ldxmov): Warning fix. * xtensa-isa.c (xtensa_add_isa): Warning fix. * xtensa-modules.c (get_num_opcodes): Warning fix.
Diffstat (limited to 'bfd/cpu-arm.c')
-rw-r--r--bfd/cpu-arm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/cpu-arm.c b/bfd/cpu-arm.c
index 66c3a466523..9ef527cb943 100644
--- a/bfd/cpu-arm.c
+++ b/bfd/cpu-arm.c
@@ -260,7 +260,7 @@ arm_check_note (abfd, buffer, buffer_size, expected_name, description_return)
}
else
{
- if (namesz != (strlen (expected_name) + 1 + 3) & ~3)
+ if (namesz != ((strlen (expected_name) + 1 + 3) & ~3))
return FALSE;
if (strcmp (descr, expected_name) != 0)