summaryrefslogtreecommitdiff
path: root/plugins/ShellExt/src/utils.cpp
diff options
context:
space:
mode:
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 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.