summaryrefslogtreecommitdiff
path: root/src/util/WStringAPI.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/WStringAPI.hxx')
-rw-r--r--src/util/WStringAPI.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/WStringAPI.hxx b/src/util/WStringAPI.hxx
index 13d3fd2cf..0fd70b72a 100644
--- a/src/util/WStringAPI.hxx
+++ b/src/util/WStringAPI.hxx
@@ -137,7 +137,7 @@ gcc_pure gcc_nonnull_all
static inline bool
StringIsEqual(const wchar_t *str1, const wchar_t *str2) noexcept
{
- return wcscmp(str1, str2) == 0;
+ return StringCompare(str1, str2) == 0;
}
/**