summaryrefslogtreecommitdiff
path: root/plugins/ShellExt/src/utils.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-05-22 10:27:55 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-05-22 10:27:55 +0000
commit2ad5305d32e3e85d511ce81a7273b9de7c05d4ed (patch)
treec82101cb7e69f460ffa8af0718700ccbb5de6575 /plugins/ShellExt/src/utils.cpp
parenta371c34e0720a4d41a81da6b0cede16c5cf8779d (diff)
replace lstrlenA to mir_strlen
git-svn-id: http://svn.miranda-ng.org/main/trunk@13750 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ShellExt/src/utils.cpp')
-rw-r--r--plugins/ShellExt/src/utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ShellExt/src/utils.cpp b/plugins/ShellExt/src/utils.cpp
index 22e033fb42..1a71ca3fe8 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 = lstrlenA(str);
+ size_t len = mir_strlen(str);
// 'm' and 'r' are mixing constants generated offline.
// They're not really 'magic', they just happen to work well.