From b03442fb79a7e95a4df040dab86b4e1a2cd1ecd7 Mon Sep 17 00:00:00 2001
From: matthew <matthew@owens.tech>
Date: Sun, 29 Jul 2018 19:15:09 +0000
Subject: [PATCH] fixed null return from board_init()

---
 common/board.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/board.c b/common/board.c
index 0ca4510..56c8ef7 100644
--- a/common/board.c
+++ b/common/board.c
@@ -23,6 +23,7 @@ Board *board_init(int sizex, int sizey)
 		}
 	}
 
+	ret = (Board *) b;
 	return ret;
 }
 
-- 
2.20.1