From: Paul Cruz Date: Thu, 22 Jun 2017 00:48:37 +0000 (-0700) Subject: added const x2 X-Git-Tag: v1.3.0~1^2~15^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeff2d0e3c15ea7de33450c6ad9da353e7d313e8;p=thirdparty%2Fzstd.git added const x2 --- diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c index 1423ca1a2..347bc1b50 100644 --- a/tests/decodecorpus.c +++ b/tests/decodecorpus.c @@ -1499,7 +1499,7 @@ static int generateCorpusWithDict(U32 seed, unsigned numFiles, const char* const /* randomly generate the dictionary */ { - int ret = genRandomDict(dictID, seed, dictSize, fullDict); + int const ret = genRandomDict(dictID, seed, dictSize, fullDict); if (ret != 0) { errorDetected = ret; goto dictCleanup;