mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[winpr,stream] fix missing comma
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user