Skip to content

Commit 19541b4

Browse files
committed
fix minor unused variable warning
1 parent c583c2c commit 19541b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

programs/zstdcli.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ int main(int argCount, const char* argv[])
13501350
if (operation == zom_compress)
13511351
DISPLAYLEVEL(4, "Compressing with %u worker threads \n", nbWorkers);
13521352
#else
1353-
(void)singleThread; (void)nbWorkers; (void)defaultLogicalCores;
1353+
(void)singleThread; (void)nbWorkers; (void)defaultLogicalCores; (void)setThreads_non1;
13541354
#endif
13551355

13561356
g_utilDisplayLevel = g_displayLevel;

0 commit comments

Comments
 (0)