From 71f06fab915f20d10b4b97d6c927087228b51f6e Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 29 Nov 2012 22:33:04 +0100 Subject: Trivial 64-bit warning fixes. --- src/security/sasl/SASLContext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/security/sasl/SASLContext.cpp') diff --git a/src/security/sasl/SASLContext.cpp b/src/security/sasl/SASLContext.cpp index 8c623124..bf601b35 100644 --- a/src/security/sasl/SASLContext.cpp +++ b/src/security/sasl/SASLContext.cpp @@ -106,7 +106,7 @@ ref SASLContext::suggestMechanism } -void SASLContext::decodeB64(const string& input, byte_t** output, int* outputLen) +void SASLContext::decodeB64(const string& input, byte_t** output, long* outputLen) { string res; @@ -127,7 +127,7 @@ void SASLContext::decodeB64(const string& input, byte_t** output, int* outputLen } -const string SASLContext::encodeB64(const byte_t* input, const int inputLen) +const string SASLContext::encodeB64(const byte_t* input, const long inputLen) { string res; -- cgit v1.2.3