diff options
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/shlib.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index b270c62c5cb4..b49c5eebfc15 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -57,7 +57,7 @@ css::uno::Environment cppuhelper::detail::getEnvironment( for (sal_Int32 i = 0; i != -1;) { std::string_view imp(o3tl::getToken(imps, 0, ';', i)); //TODO: this assumes UNO_ENV_LOG only contains ASCII characters: - if (o3tl::equalsAscii(implementation, imp)) + if (o3tl::equalsAsciiL(implementation, imp)) { n += ":log"; break; |