Fix warnings

This commit is contained in:
Vinnie Falco
2013-08-26 13:50:07 -07:00
parent 3c79ebda17
commit 5c2da08c13
11 changed files with 42 additions and 54 deletions

View File

@@ -1327,7 +1327,7 @@ struct HighResolutionTimer::Pimpl : public Uncopyable
shouldStop = false;
if (pthread_create (&thread, nullptr, timerThread, this) == 0)
setThreadToRealtime (thread, newPeriod);
setThreadToRealtime (thread, (uint64) newPeriod);
else
bassertfalse;
}