summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/loadlib.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-04-01 19:37:35 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-04-01 19:37:35 +0000
commit754c5e27f878dc4a46131593e00e78e054faa995 (patch)
treee49b137bf04d56c58c50f5fb1760a6cf84bca658 /plugins/SecureIM/src/loadlib.cpp
parent14ad5bd238bb3fb2edf8284a1c35f175e2f31d5f (diff)
SecureIM:
- thread cleaning; - fix SRMM status icon; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@4278 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/loadlib.cpp')
-rw-r--r--plugins/SecureIM/src/loadlib.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SecureIM/src/loadlib.cpp b/plugins/SecureIM/src/loadlib.cpp
index ac0d2f9272..ac75e5c172 100644
--- a/plugins/SecureIM/src/loadlib.cpp
+++ b/plugins/SecureIM/src/loadlib.cpp
@@ -5,9 +5,9 @@ CRYPTOPP_INFO cpp;
BOOL loadlib(void) {
HMODULE h = LoadLibraryA("plugins/cryptopp.dll");
- if ( h == NULL ) {
+ if (h == NULL) {
h = LoadLibraryA("cryptopp.dll");
- if ( h == NULL ) return 0;
+ if (h == NULL ) return 0;
}
cpp.cc = (_cpp_create_context) GetProcAddress(h, "cpp_create_context");