diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-21 19:57:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-21 19:57:24 +0000 |
commit | c5d77bbf98e23fec98db55c9708525eafd447b0b (patch) | |
tree | db85b7dd6b97e09f1d15606ee09e923c1095ac6a /plugins/ShellExt/src/utils.cpp | |
parent | 53d05354369c59a0c084bf0e4c72b1f25702746c (diff) |
ShellExt must not be linked with mir_core.dll
git-svn-id: http://svn.miranda-ng.org/main/trunk@11889 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ShellExt/src/utils.cpp')
-rw-r--r-- | plugins/ShellExt/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ShellExt/src/utils.cpp b/plugins/ShellExt/src/utils.cpp index 1a71ca3fe8..22e033fb42 100644 --- a/plugins/ShellExt/src/utils.cpp +++ b/plugins/ShellExt/src/utils.cpp @@ -20,7 +20,7 @@ void logA(const char *format, ...) UINT murmur_hash(const char *str)
{
- size_t len = mir_strlen(str);
+ size_t len = lstrlenA(str);
// 'm' and 'r' are mixing constants generated offline.
// They're not really 'magic', they just happen to work well.
|