Fix erroneous comparison instead of assignment

This commit is contained in:
arturo182
2017-02-15 10:20:25 +01:00
parent 2d8af48459
commit 6e753f0669

View File

@ -79,7 +79,7 @@ MsgPackStream& operator>>(MsgPackStream& s, QTime &t)
return s;
}
if (len == 1) {
t == QTime();
t = QTime();
return s;
}
quint8 p[4];