]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 13 Sep 2001 15:29:59 +0000 (15:29 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 13 Sep 2001 15:29:59 +0000 (15:29 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@902 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/symtab.c

index 6f01b109496cb37d69d1ee37733b6ffbd33b692b..eca971f654b2fa58168f2429309d6e4a6c2085ee 100644 (file)
@@ -703,7 +703,7 @@ SymEntry* AddGlobalSym (const char* Name, const type* Type, unsigned Flags)
            unsigned Size  = Decode (Type + 1);
            unsigned ESize = Decode (EType + 1);
 
-           if ((Size != 0 && ESize != 0) ||
+           if ((Size != 0 && ESize != 0 && Size != ESize) ||
                TypeCmp (Type+DECODE_SIZE+1, EType+DECODE_SIZE+1) < TC_EQUAL) {
                /* Types not identical: Conflicting types */
                Error ("Conflicting types for `%s'", Name);