From 8a0282b6c1f1c14c81df98a38f5668f70ca6f244 Mon Sep 17 00:00:00 2001 From: Vladimir Kolesnikov Date: Sun, 10 Feb 2013 16:24:06 +0200 Subject: [PATCH] Fix -Wlogical-op-parentheses warning --- src/quotedprintable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quotedprintable.cpp b/src/quotedprintable.cpp index 83fd9b6..3b901f4 100644 --- a/src/quotedprintable.cpp +++ b/src/quotedprintable.cpp @@ -29,7 +29,7 @@ QString QuotedPrintable::encode(const QByteArray &input) { byte = input[i]; - if ((byte == 0x20) || (byte >= 33) && (byte <= 126) && (byte != 61)) { + if ((byte == 0x20) || ((byte >= 33) && (byte <= 126) && (byte != 61))) { output.append(byte); } else {