diff --git a/src/ca65/spool.h b/src/ca65/spool.h index 65391a14b..517320e0d 100644 --- a/src/ca65/spool.h +++ b/src/ca65/spool.h @@ -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 */ diff --git a/src/ld65/spool.h b/src/ld65/spool.h index ec3e7d8d2..c22733a31 100644 --- a/src/ld65/spool.h +++ b/src/ld65/spool.h @@ -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)