Fix silly thinko
authorAlan Modra <amodra@gmail.com>
Wed, 11 Jun 2014 09:41:12 +0000 (19:11 +0930)
committerAlan Modra <amodra@gmail.com>
Wed, 11 Jun 2014 09:42:46 +0000 (19:12 +0930)
* linker.c (unwrap_hash_lookup): Add missing parens.

bfd/ChangeLog
bfd/linker.c

index 15a2f8b..009612e 100644 (file)
@@ -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.
index d00238c..2e21054 100644 (file)
@@ -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;