Fix typo in use of CONST_STRNEQ
This commit is contained in:
parent
ee1ee5b5ae
commit
faa4097754
1 changed files with 1 additions and 1 deletions
|
@ -583,7 +583,7 @@ coff_link_add_symbols (bfd *abfd,
|
|||
asection *stab;
|
||||
|
||||
for (stab = abfd->sections; stab; stab = stab->next)
|
||||
if (CONST_STRNEQ (".stab", stab->name)
|
||||
if (CONST_STRNEQ (stab->name, ".stab")
|
||||
&& (!stab->name[5]
|
||||
|| (stab->name[5] == '.' && ISDIGIT (stab->name[6]))))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue