From ba03cb4aea212553f47a9da672fdd897e9f2e620 Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sat, 31 Dec 2011 20:29:08 +0000 Subject: Make local functions static in clock and chessbox plugin git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31505 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/clock/clock_counter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/plugins/clock/clock_counter.c') diff --git a/apps/plugins/clock/clock_counter.c b/apps/plugins/clock/clock_counter.c index 7137eeaf38..ce29e4ce91 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); -- cgit v1.2.3