summaryrefslogtreecommitdiff
path: root/tools/source/misc/pathutils.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/misc/pathutils.cxx')
-rw-r--r--tools/source/misc/pathutils.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/misc/pathutils.cxx b/tools/source/misc/pathutils.cxx
index 0f0d0b767356..984ace0fadbf 100644
--- a/tools/source/misc/pathutils.cxx
+++ b/tools/source/misc/pathutils.cxx
@@ -160,7 +160,7 @@ WCHAR * resolveLink(WCHAR * path) {
((c == 0xE0 &&
static_cast< unsigned char >(p1[i]) >= 0xA0 &&
static_cast< unsigned char >(p1[i]) <= 0xBF) ||
- ((c >= 0xE1 && c <= 0xEC || c >= 0xEE && c <= 0xEF) &&
+ (((c >= 0xE1 && c <= 0xEC) || (c >= 0xEE && c <= 0xEF)) &&
static_cast< unsigned char >(p1[i]) >= 0x80 &&
static_cast< unsigned char >(p1[i]) <= 0xBF) ||
(c == 0xED &&