summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/commonheaders.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/UserInfoEx/commonheaders.cpp')
-rw-r--r--plugins/UserInfoEx/commonheaders.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/UserInfoEx/commonheaders.cpp b/plugins/UserInfoEx/commonheaders.cpp
index f8811bd9c0..a69a664168 100644
--- a/plugins/UserInfoEx/commonheaders.cpp
+++ b/plugins/UserInfoEx/commonheaders.cpp
@@ -176,10 +176,10 @@ unsigned int hashSetting_M2(const wchar_t * key)
INT_PTR myDestroyServiceFunction(const char * key) {
//DestroyServiceFunction always return 0 therfore we must call ServiceExists to enshure it is delete
- if(!ServiceExists(key)) return 0;
+ if (!ServiceExists(key)) return 0;
DestroyServiceFunction((HANDLE)(INT_PTR)hashSetting(key)); //old hash
- if(!ServiceExists(key)) return 0;
+ if (!ServiceExists(key)) return 0;
DestroyServiceFunction((HANDLE)(INT_PTR)hashSetting_M2(key)); //new MurmurHash2
- if(!ServiceExists(key)) return 0;
+ if (!ServiceExists(key)) return 0;
return 1;
}