]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Fix another warning 1346/head
authorNick Terrell <terrelln@fb.com>
Fri, 28 Sep 2018 21:24:38 +0000 (14:24 -0700)
committerNick Terrell <terrelln@fb.com>
Fri, 28 Sep 2018 21:24:38 +0000 (14:24 -0700)
tests/zstreamtest.c

index d7c8567d42c39c9cb63840f1c7e8c4050979b6ed..f47451a3c3d501b143c8ad90ab0a8ed3f3e9978f 100644 (file)
@@ -1081,6 +1081,7 @@ static int basicUnitTests(U32 seed, double compressibility)
             ZSTD_defaultCMem);
         ZSTD_outBuffer out = {compressedBuffer, compressedBufferSize, 0};
         int remainingInput = 256 * 1024;
+        int offset;
 
         ZSTD_CCtx_reset(zc);
         CHECK_Z(ZSTD_CCtx_resetParameters(zc));
@@ -1097,7 +1098,7 @@ static int basicUnitTests(U32 seed, double compressibility)
           remainingInput -= kSmallBlockSize;
         }
         /* Write several very long offset matches into the dictionary */
-        for (int offset = 1024; offset >= 0; offset -= 128) {
+        for (offset = 1024; offset >= 0; offset -= 128) {
           ZSTD_inBuffer in = {dictionary.start + offset, 128, 0};
           ZSTD_EndDirective flush = offset > 0 ? ZSTD_e_continue : ZSTD_e_end;
           CHECK_Z(ZSTD_compress_generic(zc, &out, &in, flush));