[winpr,stream] fix missing comma

This commit is contained in:
akallabeth
2024-10-30 17:09:46 +01:00
parent d232037e18
commit 8bb5d598fc

View File

@@ -790,12 +790,12 @@ extern "C"
memcpy(_b, (_s->pointer), (_n));
}
#define Stream_Write_INT8(s, v) \
do \
{ \
WINPR_ASSERT((v) <= INT8_MAX); \
WINPR_ASSERT((v) >= INT8_MIN); \
Stream_Write_INT8_unchecked((s), (v)) \
#define Stream_Write_INT8(s, v) \
do \
{ \
WINPR_ASSERT((v) <= INT8_MAX); \
WINPR_ASSERT((v) >= INT8_MIN); \
Stream_Write_INT8_unchecked((s), (v)); \
} while (0)
/** @brief writes a \b INT8 to a \b wStream. The stream must be large enough to hold the data.