From eeff2d0e3c15ea7de33450c6ad9da353e7d313e8 Mon Sep 17 00:00:00 2001 From: Paul Cruz Date: Wed, 21 Jun 2017 17:48:37 -0700 Subject: [PATCH] added const x2 --- tests/decodecorpus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;