diff --git a/src/core/tools/qstring.cpp b/src/core/tools/qstring.cpp index 09565ba79..21b6d8b78 100644 --- a/src/core/tools/qstring.cpp +++ b/src/core/tools/qstring.cpp @@ -171,7 +171,8 @@ static inline int ucstrcmp(const QChar *a, int alen, const QChar *b, int blen) // Unicode case-insensitive compare two same-sized strings static inline int ucstrnicmp(const ushort *a, const ushort *b, int l) { - return u_strncasecmp(reinterpret_cast(a), reinterpret_cast(b), l, U_FOLD_CASE_DEFAULT); + return u_strncasecmp(reinterpret_cast(a), + reinterpret_cast(b), l, U_FOLD_CASE_DEFAULT); } static inline bool qMemEquals(const QChar *a, const QChar *b, int length)