ignore qualifiers when looking for sdef
This commit is contained in:
parent
5dec33abaa
commit
114048df57
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue