* mipsread.c (mylookup_symbol): Use strcmp, not STREQ, as we have

already checked the first characters.
This commit is contained in:
Jim Kingdon 1993-07-15 07:28:14 +00:00
parent b5d4d6d7f8
commit 4fb0ff3b3d
1 changed files with 1 additions and 1 deletions

View File

@ -2826,7 +2826,7 @@ mylookup_symbol (name, block, namespace, class)
if (SYMBOL_NAME (sym)[0] == inc
&& SYMBOL_NAMESPACE (sym) == namespace
&& SYMBOL_CLASS (sym) == class
&& STREQ (SYMBOL_NAME (sym), name))
&& strcmp (SYMBOL_NAME (sym), name) == 0)
return sym;
bot++;
}