Misc: Fix warnings and build

Closes #10396
This commit is contained in:
Nay
2013-07-29 14:24:33 +01:00
parent 3b78023100
commit 1bb3c4a2b4
7 changed files with 19 additions and 12 deletions

View File

@@ -75,7 +75,8 @@ void RARunnable::run()
while (!World::IsStopped())
{
if (m_Reactor->run_reactor_event_loop(ACE_Time_Value(0, 100000)) == -1)
ACE_Time_Value interval(0, 100000);
if (m_Reactor->run_reactor_event_loop(interval) == -1)
break;
}