From: Dale Weiler Date: Thu, 6 Jun 2013 06:20:11 +0000 (+0000) Subject: Fix indexing X-Git-Tag: v0.3.0~151^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ad92a5f27d9ad056a0225f74f1c986bc179be064;p=xonotic%2Fgmqcc.git Fix indexing --- 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]))