diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-09-03 17:59:02 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-09-03 17:59:02 +0200 |
commit | f216c88095f5d7405388945abec4c369f9ed0072 (patch) | |
tree | 017ccf5d67abdb948dd3b2348a4d8477dd9443ca | |
parent | f17468ddf916049bb17127fbb9bdc6a523cb62f0 (diff) | |
download | konversation-f216c88095f5d7405388945abec4c369f9ed0072.tar.gz konversation-f216c88095f5d7405388945abec4c369f9ed0072.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | konversation/src/blowfish/b64stuff.cpp | 2 |
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*/ |