diff options
Diffstat (limited to 'plugins/SecureIM/src/loadlib.cpp')
-rw-r--r-- | plugins/SecureIM/src/loadlib.cpp | 4 |
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");
|