diff options
author | Iain Sandoe <iain@codesourcery.com> | 2012-01-03 12:03:10 +0000 |
---|---|---|
committer | Iain Sandoe <iain@codesourcery.com> | 2012-01-03 12:03:10 +0000 |
commit | f2b324f1f929d4d72dcb7b390e56ac58d82e3b27 (patch) | |
tree | e1436e0d1ca5725c2e410fa30f79a828c58f199b /bfd/mach-o.c | |
parent | 7f3072381b852817638295d676689b211af03c50 (diff) | |
download | gdb-f2b324f1f929d4d72dcb7b390e56ac58d82e3b27.zip gdb-f2b324f1f929d4d72dcb7b390e56ac58d82e3b27.tar.gz gdb-f2b324f1f929d4d72dcb7b390e56ac58d82e3b27.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/mach-o.c b/bfd/mach-o.c index b2c4dff..d534448 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; } |