fix c90 comment style

This commit is contained in:
Yann Collet 2024-08-06 12:47:30 -07:00
parent 89451cafbd
commit 14b8d398fd

View file

@ -149,7 +149,7 @@ static size_t uintSize(unsigned value)
return size;
}
// Note: presume @buffer is large enough
/* Note: presume @buffer is large enough */
static void writeUint_varLen(char* buffer, size_t capacity, unsigned value)
{
int endPos = (int)uintSize(value) - 1;