]> git.sur5r.net Git - cc65/commitdiff
Use GetQualifier() instead of accessing the field directly.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 5 Oct 2009 18:37:07 +0000 (18:37 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 5 Oct 2009 18:37:07 +0000 (18:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4332 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/declare.c

index 5b742a826edee40682dc9b66c31f67cbb3123f57..bab852484e025d9cb9e598e6422a33845ce30497 100644 (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 */