summaryrefslogtreecommitdiffstats
path: root/qtools/qutfcodec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtools/qutfcodec.cpp')
-rw-r--r--qtools/qutfcodec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtools/qutfcodec.cpp b/qtools/qutfcodec.cpp
index f64812c..b0caa76 100644
--- a/qtools/qutfcodec.cpp
+++ b/qtools/qutfcodec.cpp
@@ -181,8 +181,8 @@ const char* QUtf16Codec::name() const
int QUtf16Codec::heuristicContentMatch(const char* chars, int len) const
{
uchar* uchars = (uchar*)chars;
- if ( len >= 2 && (uchars[0] == 0xff && uchars[1] == 0xfe ||
- uchars[1] == 0xff && uchars[0] == 0xfe) )
+ if ( len >= 2 && ((uchars[0] == 0xff && uchars[1] == 0xfe) ||
+ (uchars[1] == 0xff && uchars[0] == 0xfe)) )
return len;
else
return 0;