From: George Lu Date: Mon, 13 Aug 2018 23:15:34 +0000 (-0700) Subject: Revert "Reorder declaration" X-Git-Tag: v0.0.29~43^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cea75402478ded21d2300544bcb538f4d3e3786;p=thirdparty%2Fzstd.git Revert "Reorder declaration" This reverts commit 3ac2c22485ab5508f47e3eab642b787af0e68b5f. --- diff --git a/tests/paramgrill.c b/tests/paramgrill.c index bcb6bcae3..e530af735 100644 --- a/tests/paramgrill.c +++ b/tests/paramgrill.c @@ -2256,9 +2256,8 @@ int main(int argc, const char** argv) g_params.strategy = (ZSTD_strategy)readU32FromChar(&argument); continue; case 'L': - { int cLevel; - argument++; - cLevel = readU32FromChar(&argument); + { argument++; + int const cLevel = readU32FromChar(&argument); g_params = ZSTD_getCParams(cLevel, g_blockSize, 0); continue; }