mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
When using GetQualifier, pass correct params :-)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4333 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
ea582a9d74
commit
8dd3cc35dc
@ -294,7 +294,7 @@ static void FixQualifiers (Type* DataType)
|
||||
while (T->C != T_END) {
|
||||
if (IsTypeArray (T)) {
|
||||
/* Extract any type qualifiers */
|
||||
Q |= GetQualifier (T->C);
|
||||
Q |= GetQualifier (T);
|
||||
T->C = UnqualifiedType (T->C);
|
||||
} else {
|
||||
/* Add extracted type qualifiers here */
|
||||
|
Loading…
Reference in New Issue
Block a user