summaryrefslogtreecommitdiff
path: root/apps/plugins/clock/clock_counter.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2011-12-31 20:29:08 +0000
committerBertrik Sikken <bertrik@sikken.nl>2011-12-31 20:29:08 +0000
commitba03cb4aea212553f47a9da672fdd897e9f2e620 (patch)
tree27a03c72fa0a4416ad32c338947234f46aa7d296 /apps/plugins/clock/clock_counter.c
parentc003d6c3328a59d071c2497b72b3e926be086530 (diff)
downloadrockbox-ba03cb4aea212553f47a9da672fdd897e9f2e620.tar.gz
rockbox-ba03cb4aea212553f47a9da672fdd897e9f2e620.zip
Make local functions static in clock and chessbox plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31505 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/clock/clock_counter.c')
-rw-r--r--apps/plugins/clock/clock_counter.c2
1 files changed, 1 insertions, 1 deletions
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){
7 counter->paused=true; 7 counter->paused=true;
8} 8}
9 9
10int counter_get_ticks_since_last_pause(struct counter* counter){ 10static int counter_get_ticks_since_last_pause(struct counter* counter){
11 if(!counter->paused) 11 if(!counter->paused)
12 return(*rb->current_tick - counter->ticks_at_last_unpause); 12 return(*rb->current_tick - counter->ticks_at_last_unpause);
13 return(0); 13 return(0);