From: Iain Sandoe Date: Tue, 3 Jan 2012 12:03:10 +0000 (+0000) Subject: correct typo in previous commit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2b324f1f929d4d72dcb7b390e56ac58d82e3b27;p=binutils-gdb.git correct typo in previous commit. bfd: * mach-o.c (bfd_mach_o_mangle_symbols): Correct typo. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 7406dddd847..f0df80c61d3 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2012-01-03 Iain Sandoe + + * mach-o.c (bfd_mach_o_mangle_symbols): Correct typo. + 2012-01-03 Iain Sandoe * mach-o.c (bfd_mach_o_write_symtab): Fill in the string table index diff --git a/bfd/mach-o.c b/bfd/mach-o.c index b2c4dff7317..d534448d328 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; }