summaryrefslogtreecommitdiff
path: root/plugins/CloudFile
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-12-11 21:36:29 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-12-11 21:36:29 +0300
commit617831dfc953a5bba630163c01fbeda11445ee78 (patch)
treebe3eb09d61f5652989dcc134f89bab6aab70955e /plugins/CloudFile
parente57cdb681cb10993f4bd08c594a27278af478b1a (diff)
mir_base64_* => parameters type fix
Diffstat (limited to 'plugins/CloudFile')
-rw-r--r--plugins/CloudFile/src/http_request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CloudFile/src/http_request.h b/plugins/CloudFile/src/http_request.h
index 39d0d98b57..aed8167b98 100644
--- a/plugins/CloudFile/src/http_request.h
+++ b/plugins/CloudFile/src/http_request.h
@@ -60,7 +60,7 @@ protected:
szLogin,
szPassword);
- ptrA ePair(mir_base64_encode((BYTE*)(char*)cPair, length));
+ ptrA ePair(mir_base64_encode(cPair, length));
length = mir_strlen(ePair) + 7;
char *value = (char*)mir_calloc(length + 1);