diff options
author | DJ Delorie <dj@delorie.com> | 1999-05-25 11:37:40 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 1999-05-25 11:37:40 +0000 |
commit | d7b786e10ab077a7591e6a66368c1f75c3cc2b53 (patch) | |
tree | ad1feb379b25db94ffc748ff11db5cb09e36d8fc /bfd/peicode.h | |
parent | e73d5032e12d8b10644192d1b25cabbc9c4da8d0 (diff) | |
download | binutils-redhat-d7b786e10ab077a7591e6a66368c1f75c3cc2b53.tar.gz |
* peicode.h (coff_swap_sym_in): When we create the actual section
to reflect the not-there section C_SECTION symbols refer to,
change the symbol class to C_STAT as the section is now really
there.
Diffstat (limited to 'bfd/peicode.h')
-rw-r--r-- | bfd/peicode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/peicode.h b/bfd/peicode.h index f15e0ec28b..be47bcac1f 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -567,6 +567,7 @@ coff_swap_sym_in (abfd, ext1, in1) in->n_scnum = unused_section_number; } + in->n_sclass = C_STAT; #endif } |