From 688952062b016fedddc2b3ba808f5ed29970c609 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 19 Jun 2017 11:53:42 -0700 Subject: [PATCH] minor declaration statement warning fix --- tests/zstreamtest.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/zstreamtest.c b/tests/zstreamtest.c index 57993fcb..95b3add0 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"); }