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:18 +0200
commit68e5edfb3e82fe339a0e8301a321ea4666e7e5bf (patch)
tree2ea3d7ada08c7532d08e8c080ba3ba445b951bc8
parentc2cf2beac586eb9d11592144cf3e59a7f85d9bc0 (diff)
downloadkonversation-68e5edfb3e82fe339a0e8301a321ea4666e7e5bf.tar.gz
konversation-68e5edfb3e82fe339a0e8301a321ea4666e7e5bf.zip
Fix FTBFS with GCC6r14.0.4
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit f216c88095f5d7405388945abec4c369f9ed0072)
-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*/