mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
fix ubuntu build issue
This commit is contained in:
parent
7fdbbe5b77
commit
cc3ce96227
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ void NodeList::processDomainServerList(QSharedPointer<ReceivedMessage> message)
|
|||
}
|
||||
|
||||
// warn if ping lag is getting long
|
||||
if (pingLagTime > MSECS_PER_SECOND) {
|
||||
if (pingLagTime > qint64(MSECS_PER_SECOND)) {
|
||||
qCDebug(networking) << "DomainList ping is lagging: " << pingLagTime << "msec";
|
||||
qCDebug(networking) << "DomainList request lag (with skew): " << domainServerRequestLag << "msec";
|
||||
qCDebug(networking) << "DomainList response lag (with skew): " << domainServerResponseLag << "msec";
|
||||
|
|
Loading…
Reference in a new issue