fix: Fix compile warning base on code style

pull/6/head
recan-li 5 years ago
parent 64ab6faf8d
commit 9ac402d160

@ -71,7 +71,7 @@ void timer_stop(struct Timer* handle)
* @param None. * @param None.
* @retval None * @retval None
*/ */
void timer_loop() void timer_loop(void)
{ {
struct Timer* target; struct Timer* target;
for(target = head_handle; target; target = target->next) for(target = head_handle; target; target = target->next)
@ -96,7 +96,7 @@ void timer_loop()
* @param None. * @param None.
* @retval None. * @retval None.
*/ */
void timer_ticks() void timer_ticks(void)
{ {
_timer_ticks++; _timer_ticks++;
} }

Loading…
Cancel
Save