From: cuz Date: Sat, 5 Jun 2004 11:33:44 +0000 (+0000) Subject: Fixed a bug X-Git-Tag: V2.12.0~738 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a0c1b9fe38ec6fa727e69ea286b7c5e5fbc2c722;p=cc65 Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@3094 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/datatype.c b/src/cc65/datatype.c index 0cbac19af..7aa50ad64 100644 --- a/src/cc65/datatype.c +++ b/src/cc65/datatype.c @@ -713,9 +713,9 @@ type GetQualifier (const type* T) * type itself. */ if (IsTypeArray (T)) { - T += DECODE_SIZE + 1; + T += DECODE_SIZE + 1; } - return (T[0] & T_QUAL_CONST); + return (T[0] & T_MASK_QUAL); }