AP_HAL_Linux: fix log after tonealarm thread removal

../../libraries/AP_HAL_Linux/Scheduler.cpp: In member function ‘void Linux::Scheduler::_debug_stack()’:
../../libraries/AP_HAL_Linux/Scheduler.cpp:127:47: warning: format ‘%zu’ expects a matching ‘size_t’ argument [-Wformat=]
                 _uart_thread.get_stack_usage());
                                               ^
This commit is contained in:
Lucas De Marchi 2018-08-07 14:24:00 -07:00 committed by Lucas De Marchi
parent bf6e137c87
commit 5068f2e8fd

View File

@ -115,8 +115,7 @@ void Scheduler::_debug_stack()
"\ttimer = %zu\n"
"\tio = %zu\n"
"\trcin = %zu\n"
"\tuart = %zu\n"
"\ttone = %zu\n",
"\tuart = %zu\n",
_timer_thread.get_stack_usage(),
_io_thread.get_stack_usage(),
_rcin_thread.get_stack_usage(),