mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 18:16:08 +02:00
fix type signed/unsigned warning
This commit is contained in:
parent
a6178a137f
commit
a95e5487fc
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ void CaraFaceTracker::bindTo(const QHostAddress& host, quint16 port) {
|
|||
}
|
||||
|
||||
bool CaraFaceTracker::isActive() const {
|
||||
static const int ACTIVE_TIMEOUT_USECS = 3000000; //3 secs
|
||||
static const quint64 ACTIVE_TIMEOUT_USECS = 3000000; //3 secs
|
||||
return (usecTimestampNow() - _lastReceiveTimestamp < ACTIVE_TIMEOUT_USECS);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue