From 14b8d398fd0f9155203031239748537e7df2ad75 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 6 Aug 2024 12:47:30 -0700 Subject: [PATCH] fix c90 comment style --- programs/benchzstd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2