From d6323291cd8113fd864bb87fb09fe6416f9b4502 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Fri, 13 Sep 2013 08:30:57 +0000 Subject: [PATCH] fix a warning in utf8.c --- src/runtime/c/gu/utf8.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/c/gu/utf8.c b/src/runtime/c/gu/utf8.c index 2377f1ac2..2a77304a9 100644 --- a/src/runtime/c/gu/utf8.c +++ b/src/runtime/c/gu/utf8.c @@ -146,7 +146,6 @@ gu_in_utf8_buf(uint8_t** buf, GuIn* in, GuExn* err) *buf = p; return; } - static const uint8_t mask[4] = { 0x7f, 0x1f, 0x0f, 0x07 }; // If reading the extra bytes causes EOF, it is an encoding // error, not a legitimate end of character stream. GuExn* tmp_err = gu_exn(err, GuEOF, NULL);