]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix c90 comment style 4113/head
authorYann Collet <cyan@fb.com>
Tue, 6 Aug 2024 19:47:30 +0000 (12:47 -0700)
committerYann Collet <cyan@fb.com>
Tue, 6 Aug 2024 19:47:30 +0000 (12:47 -0700)
programs/benchzstd.c

index 075640e82c76e91b3e8ae1d0aa2fef022c07c383..272af5924c5033b8c0cc8e655217b3d9390ee137 100644 (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;