summaryrefslogtreecommitdiff
path: root/bfd/mach-o.c
diff options
context:
space:
mode:
authoriains <iains>2012-01-03 12:03:08 +0000
committeriains <iains>2012-01-03 12:03:08 +0000
commitb329ed8a6a2aef722ed2a017fb99016662177678 (patch)
tree4baf71b575194687bf9d96f60a67df45b49f4b4a /bfd/mach-o.c
parentf0633a43f75f0b48a125e01255f95fefb144e940 (diff)
downloadbinutils-redhat-b329ed8a6a2aef722ed2a017fb99016662177678.tar.gz
correct typo in previous commit.
bfd: * mach-o.c (bfd_mach_o_mangle_symbols): Correct typo.
Diffstat (limited to 'bfd/mach-o.c')
-rw-r--r--bfd/mach-o.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index b2c4dff731..d534448d32 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -1789,7 +1789,7 @@ bfd_mach_o_mangle_symbols (bfd *abfd, bfd_mach_o_data_struct *mdata)
/* Unless we're looking at an indirect sym, note the input ordering.
We use this to keep local symbols ordered as per the input. */
- if (IS_MACHO_INDIRECT (s->n_type))
+ if (! IS_MACHO_INDIRECT (s->n_type))
s->symbol.udata.i = i;
}