1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Use GetQualifier() instead of accessing the field directly.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4332 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-10-05 18:37:07 +00:00
parent 7992bfb74a
commit ea582a9d74

View File

@ -294,7 +294,7 @@ static void FixQualifiers (Type* DataType)
while (T->C != T_END) {
if (IsTypeArray (T)) {
/* Extract any type qualifiers */
Q |= T->C & T_MASK_QUAL;
Q |= GetQualifier (T->C);
T->C = UnqualifiedType (T->C);
} else {
/* Add extracted type qualifiers here */