summaryrefslogtreecommitdiff
path: root/plugins/OpenSSL/src/main.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-07-28 09:07:46 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-07-28 09:07:46 +0000
commit483e9e22eb387be7fb726a25a7738638aa81b610 (patch)
tree5266dc6bc9f413cd40314d449327ca6de4304242 /plugins/OpenSSL/src/main.cpp
parent2f261839b60692e33d0e160344d0d636d49c90ba (diff)
compilation fix for VS2015.3
git-svn-id: http://svn.miranda-ng.org/main/trunk@17139 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/OpenSSL/src/main.cpp')
-rw-r--r--plugins/OpenSSL/src/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/OpenSSL/src/main.cpp b/plugins/OpenSSL/src/main.cpp
index 5f0eeaabca..e823e37161 100644
--- a/plugins/OpenSSL/src/main.cpp
+++ b/plugins/OpenSSL/src/main.cpp
@@ -29,8 +29,7 @@ HMODULE g_hWinCrypt;
FARPROC WINAPI delayHook(unsigned dliNotify, PDelayLoadInfo dli)
{
- switch (dliNotify)
- {
+ switch (dliNotify) {
case dliNotePreLoadLibrary:
if (!strcmpi(dli->szDll, "libeay32.dll"))
return (FARPROC)g_hOpenSSLCrypto;