]> git.sur5r.net Git - cc65/blobdiff - src/ca65/spool.h
More lineinfo usage.
[cc65] / src / ca65 / spool.h
index 9066bc9a16e2bf20418eb90266c8f6bddcb39ecc..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)
@@ -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)