mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-08 06:32:35 -04:00
Fix warning: cast between incompatible function types from 'void (*)(void *)' to 'msg_t (*)(void *)'
This commit is contained in:
parent
19ebf14e8c
commit
6c2950cfe8
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ void chSysInit(void) {
|
|||
serve interrupts in its context while keeping the lowest energy saving
|
||||
mode compatible with the system status.*/
|
||||
chThdCreateStatic(_idle_thread_wa, sizeof(_idle_thread_wa), IDLEPRIO,
|
||||
(tfunc_t)_idle_thread, NULL);
|
||||
(void *)_idle_thread, NULL);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue