From: uz Date: Mon, 26 Jan 2009 08:28:29 +0000 (+0000) Subject: Another fix for the SB_SetIndex macro. X-Git-Tag: V2.13.0rc1~339 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ab74b7bfd8141e63d0581cd807b049327acb9705;p=cc65 Another fix for the SB_SetIndex macro. git-svn-id: svn://svn.cc65.org/cc65/trunk@3916 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/strbuf.h b/src/common/strbuf.h index 7592e2e12..4ea708071 100644 --- a/src/common/strbuf.h +++ b/src/common/strbuf.h @@ -141,7 +141,7 @@ INLINE void SB_SetIndex (StrBuf* B, unsigned Index) B->Index = Index; } #else -# define SB_SetIndex(B, Index) ((B)->Index = (Index)) +# define SB_SetIndex(B, Idx) ((B)->Index = (Idx)) #endif #if defined(HAVE_INLINE)