bug fix: size 0 error messages also appeared for labels
This commit is contained in:
parent
149c764ca1
commit
abc2ba9a3c
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ declare_idf(ds, dc, lvl)
|
||||||
error("unknown %s-type",
|
error("unknown %s-type",
|
||||||
symbol2str(type->tp_fund));
|
symbol2str(type->tp_fund));
|
||||||
}
|
}
|
||||||
else {
|
else if (type->tp_fund != LABEL) {
|
||||||
/* CJ */
|
/* CJ */
|
||||||
warning("%s has size 0", idf->id_text);
|
warning("%s has size 0", idf->id_text);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue