From f28c78d14ee9d7277dca5128de8fc9d1b019d38e Mon Sep 17 00:00:00 2001 From: Jens Guenther Date: Sun, 21 Oct 2018 12:13:34 +0200 Subject: [PATCH] fweep: fix build with sdcc 3.7.1 for Travis --- Applications/games/fweep.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Applications/games/fweep.c b/Applications/games/fweep.c index f38d6881..cef8bd63 100644 --- a/Applications/games/fweep.c +++ b/Applications/games/fweep.c @@ -1104,9 +1104,10 @@ void tokenise(uint16_t text, uint16_t dict, uint16_t parsebuf, int len, boolean ws[256]; uint8_t d[10]; int i, el, ne, k, p, p1; - memset(ws, 0, 256 * sizeof(boolean)); int l; + memset(ws, 0, 256 * sizeof(boolean)); + /* A big copy we should avoid */ /* FIXME change algorithms */ /* Read the table of character codes that count as a word */ -- 2.34.1