mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Add void to function declarations/definitions where required
This commit is contained in:
parent
120955e26b
commit
53f5e87c7a
45 changed files with 130 additions and 128 deletions
|
@ -156,7 +156,7 @@ static long trampCmsCommence(displayPort_t *pDisp, const void *self)
|
|||
return MENU_CHAIN_BACK;
|
||||
}
|
||||
|
||||
static void trampCmsInitSettings()
|
||||
static void trampCmsInitSettings(void)
|
||||
{
|
||||
if (trampBand > 0) trampCmsBand = trampBand;
|
||||
if (trampChannel > 0) trampCmsChan = trampChannel;
|
||||
|
@ -174,7 +174,7 @@ static void trampCmsInitSettings()
|
|||
}
|
||||
}
|
||||
|
||||
static long trampCmsOnEnter()
|
||||
static long trampCmsOnEnter(void)
|
||||
{
|
||||
trampCmsInitSettings();
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue