1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

Removing unnecessary volatile keyword.

This commit is contained in:
Dominic Clifton 2014-12-06 14:32:32 +00:00
parent 9165e11449
commit 7356863939
2 changed files with 2 additions and 2 deletions

View file

@ -772,7 +772,7 @@ void timerStart(void)
* @param TIM_Typedef *tim The timer to overflow
* @return void
**/
void timerForceOverflow(volatile TIM_TypeDef *tim)
void timerForceOverflow(TIM_TypeDef *tim)
{
uint8_t timerIndex = lookupTimerIndex((const TIM_TypeDef *)tim);