mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 17:52:26 +02:00
use uint64_t for timing const in DS
This commit is contained in:
parent
cebd8e5f4b
commit
f3acb53835
1 changed files with 1 additions and 1 deletions
|
@ -552,7 +552,7 @@ int DomainServer::run() {
|
|||
}
|
||||
}
|
||||
|
||||
const long long RESTART_HOLD_TIME_USECS = 5 * 1000 * 1000;
|
||||
const uint64_t RESTART_HOLD_TIME_USECS = 5 * 1000 * 1000;
|
||||
|
||||
if (!_hasCompletedRestartHold && usecTimestampNow() - usecTimestamp(&startTime) > RESTART_HOLD_TIME_USECS) {
|
||||
_hasCompletedRestartHold = true;
|
||||
|
|
Loading…
Reference in a new issue