summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/src/base64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CryptoPP/src/base64.cpp')
-rw-r--r--plugins/CryptoPP/src/base64.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/CryptoPP/src/base64.cpp b/plugins/CryptoPP/src/base64.cpp
index 8daa2bd598..24ead6eed2 100644
--- a/plugins/CryptoPP/src/base64.cpp
+++ b/plugins/CryptoPP/src/base64.cpp
@@ -2,7 +2,7 @@
string base64encode(const string& buf)
{
- return (char*)ptrA( mir_base64_encode((PBYTE)buf.data(), (unsigned)buf.length()));
+ return (char*)ptrA(mir_base64_encode((PBYTE)buf.data(), (unsigned)buf.length()));
}
string base64decode(const string& buf)
@@ -18,5 +18,3 @@ string base64decode(const char *buf)
char *plain = (char*)mir_base64_decode(buf, &len);
return (plain == NULL) ? string() : string(plain, len);
}
-
-// EOF