]> git.sur5r.net Git - cc65/commitdiff
Fixed a typo
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 22 Dec 2003 20:39:15 +0000 (20:39 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 22 Dec 2003 20:39:15 +0000 (20:39 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2817 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/objdata.h

index 0598c50f6b43280cf83228f263d0fecdcf75d73f..e538320aaf1291175039ddd2504dcf388713d98f 100644 (file)
@@ -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);