diff options
Diffstat (limited to 'apps/plugins/clock/clock_counter.c')
| -rw-r--r-- | apps/plugins/clock/clock_counter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/clock/clock_counter.c b/apps/plugins/clock/clock_counter.c index 7137eea..ce29e4c 100644 --- a/apps/plugins/clock/clock_counter.c +++ b/apps/plugins/clock/clock_counter.c @@ -7,7 +7,7 @@ void counter_init(struct counter* counter){ counter->paused=true; } -int counter_get_ticks_since_last_pause(struct counter* counter){ +static int counter_get_ticks_since_last_pause(struct counter* counter){ if(!counter->paused) return(*rb->current_tick - counter->ticks_at_last_unpause); return(0); |