mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 10:03:47 +08:00
Fix silly thinko
* linker.c (unwrap_hash_lookup): Add missing parens.
This commit is contained in:
parent
07821655a9
commit
7ed689ad61
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user