]> git.sur5r.net Git - cc65/commitdiff
Fixed another problem with the macros.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Mar 2008 21:23:10 +0000 (21:23 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Mar 2008 21:23:10 +0000 (21:23 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3828 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/spool.h
src/ld65/spool.h

index 65391a14b2f4cdfd49cee7f4c9aa51e4f6f894b8..517320e0d8aedc838bfd1fbf7fc552d6cc54e620 100644 (file)
@@ -66,7 +66,7 @@ INLINE unsigned GetStrBufId (const StrBuf* S)
     return SP_Add (&StrPool, S);
 }
 #else
-#  define GetStringId(S)        SP_Add (&StrPool, (S))
+#  define GetStrBufId(S)        SP_Add (&StrPool, (S))
 #endif
 
 #if defined(HAVE_INLINE)
@@ -101,7 +101,7 @@ INLINE const char* GetString (unsigned Index)
 
 void WriteStrPool (void);
 /* Write the string pool to the object file */
-                                         
+
 
 
 /* End of spool.h */
index ec3e7d8d25839683ff84a5d951d02bdf1b7ab434..c22733a310ddd0926161731934094a3c5aec78a1 100644 (file)
@@ -70,7 +70,7 @@ INLINE unsigned GetStrBufId (const StrBuf* S)
     return SP_Add (&StrPool, S);
 }
 #else
-#  define GetStringId(S)        SP_Add (&StrPool, (S))
+#  define GetStrBufId(S)        SP_Add (&StrPool, (S))
 #endif
 
 #if defined(HAVE_INLINE)