From: Paul Cruz Date: Thu, 22 Jun 2017 00:48:01 +0000 (-0700) Subject: added const X-Git-Tag: v1.3.0~1^2~15^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04253e21bb0f20bc3985f8a850fd4866b090e9f0;p=thirdparty%2Fzstd.git added const --- diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c index 282f959e6..1423ca1a2 100644 --- a/tests/decodecorpus.c +++ b/tests/decodecorpus.c @@ -1316,7 +1316,7 @@ static size_t testDecodeWithDict(U32 seed, size_t dictSize) /* generate random dictionary */ { - int ret = genRandomDict(dictID, seed, dictSize, fullDict); + int const ret = genRandomDict(dictID, seed, dictSize, fullDict); if (ret != 0) { errorDetected = ERROR(GENERIC); goto dictTestCleanup;