aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/linker.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 15a2f8b..009612e 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-11 Alan Modra <amodra@gmail.com>
+
+ * linker.c (unwrap_hash_lookup): Add missing parens.
+
2014-06-11 Kai Tietz <ktietz@redhat.com>
* libcoff-in.h (coff_tdata): Make relocbase member unsigned.
diff --git a/bfd/linker.c b/bfd/linker.c
index d00238c..2e21054 100644
--- a/bfd/linker.c
+++ b/bfd/linker.c
@@ -621,7 +621,7 @@ unwrap_hash_lookup (struct bfd_link_info *info,
if (bfd_hash_lookup (info->wrap_hash, l, FALSE, FALSE) != NULL)
{
char save = 0;
- if (l - sizeof WRAP - 1 != h->root.string)
+ if (l - (sizeof WRAP - 1) != h->root.string)
{
--l;
save = *l;