Fix -Wlogical-op-parentheses warning

This commit is contained in:
Vladimir Kolesnikov 2013-02-10 16:24:06 +02:00
parent 6339318cde
commit 8a0282b6c1

View File

@ -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 {