diff --git a/src/common/strbuf.h b/src/common/strbuf.h index 8e3fc8863..0bd0a7f7e 100644 --- a/src/common/strbuf.h +++ b/src/common/strbuf.h @@ -295,7 +295,8 @@ INLINE void SB_SkipMultiple (StrBuf* B, unsigned Count) } } #else -# define SB_SkipMultiple(B) do { if (((B)->Index += (Count)) > (B)->Len) (B)->Index = (B)->Len; } while (0) +# define SB_SkipMultiple(B, Count) \ + do { if (((B)->Index += (Count)) > (B)->Len) (B)->Index = (B)->Len; } while (0) #endif void SB_Drop (StrBuf* B, unsigned Count);