summaryrefslogtreecommitdiff
path: root/plugins/Variables/src/tokenregister.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Variables/src/tokenregister.cpp')
-rw-r--r--plugins/Variables/src/tokenregister.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/Variables/src/tokenregister.cpp b/plugins/Variables/src/tokenregister.cpp
index f4865e84e5..a4722f82d2 100644
--- a/plugins/Variables/src/tokenregister.cpp
+++ b/plugins/Variables/src/tokenregister.cpp
@@ -35,7 +35,7 @@ static int CompareTokens(const TokenRegisterEntry* p1, const TokenRegisterEntry*
static LIST<TokenRegisterEntry> tokens(100, CompareTokens);
-static CRITICAL_SECTION csRegister;
+static mir_cs csRegister;
unsigned long int hashlittle(void *key, size_t length, unsigned long int initval);
@@ -235,7 +235,6 @@ int getTokenRegisterCount()
int initTokenRegister()
{
- InitializeCriticalSection(&csRegister);
return 0;
}
@@ -259,6 +258,5 @@ int deinitTokenRegister()
}
tokens.destroy();
- DeleteCriticalSection(&csRegister);
return 0;
}