From: W. Felix Handte Date: Fri, 8 May 2020 20:42:15 +0000 (-0400) Subject: Use Unused Variable X-Git-Tag: v1.4.5^2~28^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=376c26bf566c0dd7abc3920da861147b5f491fc7;p=thirdparty%2Fzstd.git Use Unused Variable --- diff --git a/programs/zstdcli.c b/programs/zstdcli.c index 81f1910c2..4a1e3193d 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -1285,7 +1285,8 @@ int main(int const argCount, const char* argv[]) /* Compare strategies constant with the ground truth */ { ZSTD_bounds strategyBounds = ZSTD_cParam_getBounds(ZSTD_c_strategy); - assert(ZSTD_NB_STRATEGIES == strategyBounds.upperBound);} + assert(ZSTD_NB_STRATEGIES == strategyBounds.upperBound); + (void)strategyBounds; } if (showDefaultCParams) { size_t fileNb;