diff options
author | Michael Tiemann <tiemann@cygnus> | 1992-04-29 20:45:03 +0000 |
---|---|---|
committer | Michael Tiemann <tiemann@cygnus> | 1992-04-29 20:45:03 +0000 |
commit | b96a430e09b8eda3a21c37412c9b84a5979f3c61 (patch) | |
tree | 6eaeb9815589c997dbf5e370e8478fd6f22c30b8 /bfd/bout.c | |
parent | 5022aea5df73e56d0d52338024e364a185d96bfc (diff) | |
download | gdb-b96a430e09b8eda3a21c37412c9b84a5979f3c61.zip gdb-b96a430e09b8eda3a21c37412c9b84a5979f3c61.tar.gz gdb-b96a430e09b8eda3a21c37412c9b84a5979f3c61.tar.bz2 |
Fix a typo (missing ||) in b_out_squirt_out_relocs.
Diffstat (limited to 'bfd/bout.c')
-rw-r--r-- | bfd/bout.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -530,7 +530,7 @@ else raw[7] = len_2; } if (output_section == &bfd_com_section - output_section == &bfd_abs_section + || output_section == &bfd_abs_section || output_section == &bfd_und_section) { /* Fill in symbol */ |