]> git.sur5r.net Git - cc65/commitdiff
Fixed a macro problem
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 12 Dec 2002 23:19:33 +0000 (23:19 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 12 Dec 2002 23:19:33 +0000 (23:19 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1744 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/codeseg.h

index 3ddf24ada5ffd0396edd0169c888a3d4b942a108..aa923e3de699acc8d00d827a6e3b11aa7dd9c689 100644 (file)
@@ -161,7 +161,7 @@ INLINE struct CodeEntry* CS_GetEntry (CodeSeg* S, unsigned Index)
     return CollAt (&S->Entries, Index);
 }
 #else
-#  define CS_GetEntry(S, Index)        CollAt(&(S)->Entries, (Index))
+#  define CS_GetEntry(S, Index)        ((struct CodeEntry*) CollAt(&(S)->Entries, (Index)))
 #endif
 
 struct CodeEntry* CS_GetPrevEntry (CodeSeg* S, unsigned Index);