summaryrefslogtreecommitdiff
path: root/src/code/gamealloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/code/gamealloc.c')
-rw-r--r--src/code/gamealloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/gamealloc.c b/src/code/gamealloc.c
index 6067ad91c..a0d6f741f 100644
--- a/src/code/gamealloc.c
+++ b/src/code/gamealloc.c
@@ -1,10 +1,10 @@
-#include "global.h"
+#include "gamealloc.h"
+
#include "system_malloc.h"
void GameAlloc_Log(GameAlloc* this) {
- GameAllocEntry* iter;
+ GameAllocEntry* iter = this->base.next;
- iter = this->base.next;
while (iter != &this->base) {
iter = iter->next;
}