diff --git a/multi_timer.c b/multi_timer.c index 8b48f2c..feb9cae 100644 --- a/multi_timer.c +++ b/multi_timer.c @@ -71,7 +71,7 @@ void timer_stop(struct Timer* handle) * @param None. * @retval None */ -void timer_loop() +void timer_loop(void) { struct Timer* target; for(target = head_handle; target; target = target->next) @@ -96,7 +96,7 @@ void timer_loop() * @param None. * @retval None. */ -void timer_ticks() +void timer_ticks(void) { _timer_ticks++; }