ignore qualifiers when looking for sdef
This commit is contained in:
parent
7b3d18e5a1
commit
3ad14daa2e
@ -266,7 +266,7 @@ idf2sdef(idf, tp)
|
|||||||
|
|
||||||
/* Follow chain from idf, to meet tp. */
|
/* Follow chain from idf, to meet tp. */
|
||||||
while ((sdef = *sdefp)) {
|
while ((sdef = *sdefp)) {
|
||||||
if (equal_type(sdef->sd_stype, tp, 0))
|
if (equal_type(sdef->sd_stype, tp, -999)) /* ??? hack */
|
||||||
return sdef;
|
return sdef;
|
||||||
sdefp = &(*sdefp)->next;
|
sdefp = &(*sdefp)->next;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user