]> git.sur5r.net Git - cc65/commitdiff
Fixed bugs in the macro versions of the GetStringId inline functions.
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Mar 2008 21:13:10 +0000 (21:13 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 31 Mar 2008 21:13:10 +0000 (21:13 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3826 b7a2c559-68d2-44c3-8de9-860c34a00d81

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

index 9066bc9a16e2bf20418eb90266c8f6bddcb39ecc..65391a14b2f4cdfd49cee7f4c9aa51e4f6f894b8 100644 (file)
@@ -76,7 +76,7 @@ INLINE unsigned GetStringId (const char* S)
     return SP_AddStr (&StrPool, S);
 }
 #else
-#  define GetStringId(S)        SP_Add (&StrPool, (S))
+#  define GetStringId(S)        SP_AddStr (&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 4cbdbcb80ded8d8f1f5a8d91a5882b22f566607c..ec3e7d8d25839683ff84a5d951d02bdf1b7ab434 100644 (file)
@@ -80,7 +80,7 @@ INLINE unsigned GetStringId (const char* S)
     return SP_AddStr (&StrPool, S);
 }
 #else
-#  define GetStringId(S)        SP_Add (&StrPool, (S))
+#  define GetStringId(S)        SP_AddStr (&StrPool, (S))
 #endif
 
 #if defined(HAVE_INLINE)