]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor declaration statement warning fix
authorYann Collet <cyan@fb.com>
Mon, 19 Jun 2017 18:53:42 +0000 (11:53 -0700)
committerYann Collet <cyan@fb.com>
Mon, 19 Jun 2017 18:53:42 +0000 (11:53 -0700)
tests/zstreamtest.c

index 57993fcbbadc4355aa75b1676b6efd2a41e316e6..95b3add0ba855ad3094658d28910cf5dc49a1631 100644 (file)
@@ -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");
                 }