From: Yann Collet Date: Mon, 19 Jun 2017 18:53:42 +0000 (-0700) Subject: minor declaration statement warning fix X-Git-Tag: v1.3.0~1^2~17^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=688952062b016fedddc2b3ba808f5ed29970c609;p=thirdparty%2Fzstd.git minor declaration statement warning fix --- diff --git a/tests/zstreamtest.c b/tests/zstreamtest.c index 57993fcbb..95b3add0b 100644 --- a/tests/zstreamtest.c +++ b/tests/zstreamtest.c @@ -1305,7 +1305,6 @@ static int fuzzerTests_newAPI(U32 seed, U32 nbTests, unsigned startTest, double if (dict && dictSize) { /* test that compression parameters are correctly rejected after setting a dictionary */ - DISPLAYLEVEL(5, "setting windowLog while dict!=NULL \n"); size_t const setError = ZSTD_CCtx_setParameter(zc, ZSTD_p_windowLog, cParams.windowLog-1) ; CHECK(!ZSTD_isError(setError), "ZSTD_CCtx_setParameter should have failed"); }