commit 2e122bdffbe7524f5ed6f7cb704bbd1b778a6b41
parent b1770039f4d483cdab2d4d136cd7ffbf12f165b7
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Wed, 28 May 2025 15:23:45 +0200
Fix small build error with clang
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/solvers/h48/gendata_h48.h b/src/solvers/h48/gendata_h48.h
@@ -423,7 +423,8 @@ gendata_h48k2(gendata_h48_arg_t arg[static 1])
arg->base = base[arg->h];
arg->info = makeinfo_h48k2(arg);
- inext = count = 0;
+ inext = 0;
+ count = 0;
pthread_mutex_init(&shortcubes_mutex, NULL);
for (i = 0; i < CHUNKS; i++)
pthread_mutex_init(&table_mutex[i], NULL);