From 38ba7002f2c9156842c5042990c322fc9546dd86 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 20 Jul 2017 18:39:04 -0700 Subject: [PATCH] fixed minor warning on unused variable in shell function --- tests/fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzzer.c b/tests/fuzzer.c index d63f1352c..046c67ea8 100644 --- a/tests/fuzzer.c +++ b/tests/fuzzer.c @@ -248,7 +248,7 @@ static int FUZ_mallocTests(unsigned seed, double compressibility, unsigned part) static int FUZ_mallocTests(unsigned seed, double compressibility, unsigned part) { - (void)seed; (void)compressibility; + (void)seed; (void)compressibility; (void)part; return 0; }