summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-09-03 17:59:02 +0200
committerSlávek Banko <slavek.banko@axis.cz>2016-09-03 17:59:02 +0200
commitf216c88095f5d7405388945abec4c369f9ed0072 (patch)
tree017ccf5d67abdb948dd3b2348a4d8477dd9443ca
parentf17468ddf916049bb17127fbb9bdc6a523cb62f0 (diff)
downloadkonversation-f216c880.tar.gz
konversation-f216c880.zip
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--konversation/src/blowfish/b64stuff.cpp2
1 files changed, 1 insertions, 1 deletions
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*/