[winpr,stream] fix c++ warings for Stream_Write_UINT8

This commit is contained in:
Armin Novak
2023-04-13 11:37:11 +02:00
committed by David Fort
parent 8989386d01
commit 639ac20ed9

View File

@@ -300,7 +300,7 @@ extern "C"
{
WINPR_ASSERT(_s);
WINPR_ASSERT(Stream_GetRemainingCapacity(_s) >= 1);
*_s->pointer++ = (UINT8)(_v);
*_s->pointer++ = (_v);
}
static INLINE void Stream_Write_INT16(wStream* _s, INT16 _v)