1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

fix minor unused variable warning

This commit is contained in:
Yann Collet
2025-03-11 00:17:45 -07:00
parent c583c2c39e
commit 19541b4d1a

View File

@ -1350,7 +1350,7 @@ int main(int argCount, const char* argv[])
if (operation == zom_compress) if (operation == zom_compress)
DISPLAYLEVEL(4, "Compressing with %u worker threads \n", nbWorkers); DISPLAYLEVEL(4, "Compressing with %u worker threads \n", nbWorkers);
#else #else
(void)singleThread; (void)nbWorkers; (void)defaultLogicalCores; (void)singleThread; (void)nbWorkers; (void)defaultLogicalCores; (void)setThreads_non1;
#endif #endif
g_utilDisplayLevel = g_displayLevel; g_utilDisplayLevel = g_displayLevel;