From: Yann Collet Date: Tue, 6 Aug 2024 19:47:30 +0000 (-0700) Subject: fix c90 comment style X-Git-Tag: v1.5.7^2~96^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4113%2Fhead;p=thirdparty%2Fzstd.git fix c90 comment style --- diff --git a/programs/benchzstd.c b/programs/benchzstd.c index 075640e82..272af5924 100644 --- a/programs/benchzstd.c +++ b/programs/benchzstd.c @@ -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;