]> git.sur5r.net Git - cc65/commitdiff
Fixed an error in the macro version of HasObjData().
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 31 Jul 2010 12:37:14 +0000 (12:37 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 31 Jul 2010 12:37:14 +0000 (12:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4776 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/objdata.h

index ca39f38a09e5aba46ad6a387f024c087ebc5e395..a6e785455c53f06d43f5192cbbfc47eab0548a15 100644 (file)
@@ -134,7 +134,7 @@ INLINE int ObjHasFiles (const ObjData* O)
     return (O != 0 && CollCount (&O->Files) != 0);
 }
 #else
-#  define ObjHasFiles(O)       ((O) != 0 && CollCount ((O)->Files) != 0)
+#  define ObjHasFiles(O)       ((O) != 0 && CollCount (&(O)->Files) != 0)
 #endif
 
 const char* GetSourceFileName (const ObjData* O, unsigned Index);