diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-06 19:19:57 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-06 19:19:57 +0000 |
commit | 05cb3ed52210da707e2bf42d4d1eccb0ea55f4af (patch) | |
tree | dc6ca569316854e2ee1ed950617ec8ffdff48de0 /plugins/CryptoPP/src/base64.h | |
parent | 5d01efc9987afc9ac4f9ae52244e2b423db043b3 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@2670 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CryptoPP/src/base64.h')
-rw-r--r-- | plugins/CryptoPP/src/base64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CryptoPP/src/base64.h b/plugins/CryptoPP/src/base64.h index 1024ecbbd7..8be9cbc4fa 100644 --- a/plugins/CryptoPP/src/base64.h +++ b/plugins/CryptoPP/src/base64.h @@ -44,7 +44,7 @@ static const byte asciiToBin64[] = static const byte binToAscii64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
-char *base64encode(const char *, const int);
+char *base64encode(const char *, const size_t);
char *base64decode(const char *, size_t *);
string base64encode(const string);
|