]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Fix indexing
authorDale Weiler <killfieldengine@gmail.com>
Thu, 6 Jun 2013 06:20:11 +0000 (06:20 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Thu, 6 Jun 2013 06:20:11 +0000 (06:20 +0000)
stat.c

diff --git a/stat.c b/stat.c
index 3f342d0ce66b0e792836f99da58a266f1ccc437a..21447eb39356e33bf00a51e8f99a2cdb93d06c52 100644 (file)
--- 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]))