1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +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:
cuz 2003-12-22 20:39:15 +00:00
parent 1dec560743
commit 9e5d22cd9f

View File

@ -133,8 +133,8 @@ INLINE int ObjHasFiles (const ObjData* O)
{ {
return (O != 0 && O->Files != 0); return (O != 0 && O->Files != 0);
} }
#else #else
# defined ObjHasFiles(O) ((O) != 0 && (O)->Files != 0) # define ObjHasFiles(O) ((O) != 0 && (O)->Files != 0)
#endif #endif
const char* GetSourceFileName (const ObjData* O, unsigned Index); const char* GetSourceFileName (const ObjData* O, unsigned Index);