mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 02:10:52 +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:
parent
b2321ebdf7
commit
031ae666e3
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user