diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-15 15:34:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-15 15:34:59 +0300 |
commit | b572f4308e640ea46e9381ff642bed2950ffa888 (patch) | |
tree | e083208223c0be2138d88c055ef14659446af4a5 /src | |
parent | 44b60862c97e5ec855d2bacd4d15f81f7ae7f410 (diff) |
warning fixes
Diffstat (limited to 'src')
-rwxr-xr-x | src/mir_core/src/http.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_core/src/http.cpp b/src/mir_core/src/http.cpp index ff7644362a..ae5a9f3ff4 100755 --- a/src/mir_core/src/http.cpp +++ b/src/mir_core/src/http.cpp @@ -66,7 +66,7 @@ MIR_CORE_DLL(char*) mir_base64_encode(const void *input, size_t inputLen) if (input == nullptr)
return nullptr;
- unsigned outputLen = mir_base64_encode_bufsize(inputLen);
+ size_t outputLen = mir_base64_encode_bufsize(inputLen);
char *output = (char*)mir_alloc(outputLen);
if (output == nullptr)
return nullptr;
|