Fix -Wsequence-point warning
This commit is contained in:
parent
8a0282b6c1
commit
7b42551a20
@ -52,7 +52,8 @@ QByteArray QuotedPrintable::decode(const QString &input)
|
|||||||
{
|
{
|
||||||
if (input.at(i).toLatin1() == '=')
|
if (input.at(i).toLatin1() == '=')
|
||||||
{
|
{
|
||||||
output.append((hexVal[input.at(++i).toLatin1() - '0'] << 4) + hexVal[input.at(++i).toLatin1() - '0']);
|
output.append((hexVal[input.at(i+1).toLatin1() - '0'] << 4) + hexVal[input.at(i+2).toLatin1() - '0']);
|
||||||
|
i += 2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user