From: Jens Guenther Date: Sun, 21 Oct 2018 10:13:34 +0000 (+0200) Subject: fweep: fix build with sdcc 3.7.1 for Travis X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=f28c78d14ee9d7277dca5128de8fc9d1b019d38e;p=FUZIX.git fweep: fix build with sdcc 3.7.1 for Travis --- 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 */