AP_HAL_SITL: fix static member access through instance

This commit is contained in:
Pierre Kancir 2018-05-28 18:07:02 +02:00 committed by Peter Barker
parent f986f1366f
commit 7732b41186

View File

@ -86,7 +86,7 @@ void HAL_SITL::run(int argc, char * const argv[], Callbacks* callbacks) const
for (;;) {
callbacks->loop();
sitlScheduler._run_io_procs(false);
HALSITL::Scheduler::_run_io_procs(false);
}
}