From: Yann Collet Date: Thu, 11 Jan 2018 12:49:19 +0000 (-0800) Subject: fixed minor warning on prototype definition X-Git-Tag: v1.3.4~1^2~89^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2103a62b3d4b7c092021d7c21c0d2db7ad760841;p=thirdparty%2Fzstd.git fixed minor warning on prototype definition --- diff --git a/tests/fuzzer.c b/tests/fuzzer.c index 13e856be0..e0817e903 100644 --- a/tests/fuzzer.c +++ b/tests/fuzzer.c @@ -68,7 +68,7 @@ static UTIL_time_t g_displayClock = UTIL_TIME_INITIALIZER; #undef MIN #undef MAX -void FUZ_bug976() +void FUZ_bug976(void) { /* these constants shall not depend on MIN() macro */ assert(ZSTD_HASHLOG_MAX < 31); assert(ZSTD_CHAINLOG_MAX < 31);