From ad92a5f27d9ad056a0225f74f1c986bc179be064 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Thu, 6 Jun 2013 06:20:11 +0000 Subject: [PATCH] Fix indexing --- stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stat.c b/stat.c index 3f342d0..21447eb 100644 --- a/stat.c +++ b/stat.c @@ -560,7 +560,7 @@ static void stat_dump_stats_table(stat_size_table_t table, const char *string, u if (!table) return; - for (i = 0, j = 0; i < ST_SIZE; i++) { + for (i = 0, j = 1; i < ST_SIZE; i++) { stat_size_entry_t *entry; if (!(entry = table[i])) -- 2.39.2