mirror of
https://github.com/romixlab/qmsgpack.git
synced 2025-06-25 01:21:33 +02:00
Fix erroneous comparison instead of assignment
This commit is contained in:
@ -79,7 +79,7 @@ MsgPackStream& operator>>(MsgPackStream& s, QTime &t)
|
||||
return s;
|
||||
}
|
||||
if (len == 1) {
|
||||
t == QTime();
|
||||
t = QTime();
|
||||
return s;
|
||||
}
|
||||
quint8 p[4];
|
||||
|
Reference in New Issue
Block a user