mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
Fixed a typo
git-svn-id: svn://svn.cc65.org/cc65/trunk@2817 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
1dec560743
commit
9e5d22cd9f
@ -133,8 +133,8 @@ INLINE int ObjHasFiles (const ObjData* O)
|
||||
{
|
||||
return (O != 0 && O->Files != 0);
|
||||
}
|
||||
#else
|
||||
# defined ObjHasFiles(O) ((O) != 0 && (O)->Files != 0)
|
||||
#else
|
||||
# define ObjHasFiles(O) ((O) != 0 && (O)->Files != 0)
|
||||
#endif
|
||||
|
||||
const char* GetSourceFileName (const ObjData* O, unsigned Index);
|
||||
|
Loading…
Reference in New Issue
Block a user