From f216c88095f5d7405388945abec4c369f9ed0072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 3 Sep 2016 17:59:02 +0200 Subject: Fix FTBFS with GCC6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- konversation/src/blowfish/b64stuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konversation/src/blowfish/b64stuff.cpp b/konversation/src/blowfish/b64stuff.cpp index 72f0776..96782ac 100644 --- a/konversation/src/blowfish/b64stuff.cpp +++ b/konversation/src/blowfish/b64stuff.cpp @@ -100,7 +100,7 @@ unsigned char *spc_base64_encode(unsigned char *input, size_t len, int wrap) { //--------------------------------------------------------------------------- -static char b64revtb[256] = { +static signed char b64revtb[256] = { -3, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*0-15*/ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /*16-31*/ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, /*32-47*/ -- cgit v1.2.3