commit 324cfaf3b9ff7b1b8576e679e4ce571628f37fde
parent c0aa77e610366e60f7ecf70db481d8d2cfb66c35
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Wed, 18 Sep 2024 10:41:42 +0200
Remove useless output from stats tool
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/010_stats_tables_h48/stats_tables_h48.c b/tools/010_stats_tables_h48/stats_tables_h48.c
@@ -73,7 +73,7 @@ void run(void) {
for (j = 0; j < 12; j++) {
printf("Data for h=%" PRId64 "\n", j);
- for (k = 0, avg = 0.0; k <= 16; k++) {
+ for (k = 0, avg = 0.0; k < 16; k++) {
for (i = 0, tot = 0; i < THREADS; i++)
tot += arg[i].v[j][k];
printf("%" PRId64 "\t%" PRId64 "\n", k, tot);