1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00

Fixed an error in the macro version of HasObjData().

git-svn-id: svn://svn.cc65.org/cc65/trunk@4776 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-07-31 12:37:14 +00:00
parent b2321ebdf7
commit 031ae666e3

View 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);