diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-10 21:09:08 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-10 21:09:08 +0000 |
commit | 95d8d4c224de772a494b3c658c8b8990c577d173 (patch) | |
tree | 27911114534fb31df1ba19d50ca69b98f6fa7e9e /plugins/Variables/src/tokenregister.cpp | |
parent | 7f5cb4c7fc462ff993c4e80612db551484a5e875 (diff) |
Variables:
- warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14902 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Variables/src/tokenregister.cpp')
-rw-r--r-- | plugins/Variables/src/tokenregister.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Variables/src/tokenregister.cpp b/plugins/Variables/src/tokenregister.cpp index 3cf79cb4f1..2e6bc5fd80 100644 --- a/plugins/Variables/src/tokenregister.cpp +++ b/plugins/Variables/src/tokenregister.cpp @@ -96,7 +96,7 @@ int deRegisterToken(TCHAR *token) return 0;
}
-INT_PTR registerToken(WPARAM wParam, LPARAM lParam)
+INT_PTR registerToken(WPARAM, LPARAM lParam)
{
DWORD hash;
int idx;
@@ -164,7 +164,7 @@ TCHAR *parseFromRegister(ARGUMENTSINFO *ai) return NULL;
INT_PTR callRes = 0;
- TCHAR *temp = NULL, *res = NULL;
+ TCHAR *res = NULL;
mir_cslock lck(csRegister);
|