mirror of
https://github.com/cc65/cc65.git
synced 2025-02-04 13:32:54 +00:00
Fixed an error in the SB_SetIndex macro.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3915 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b169d2ad1e
commit
f45e73164d
@ -141,7 +141,7 @@ INLINE void SB_SetIndex (StrBuf* B, unsigned Index)
|
||||
B->Index = Index;
|
||||
}
|
||||
#else
|
||||
# define SB_SetIndex(B) ((B)->Index = (Index))
|
||||
# define SB_SetIndex(B, Index) ((B)->Index = (Index))
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_INLINE)
|
||||
|
Loading…
x
Reference in New Issue
Block a user