diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-31 20:29:08 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-12-31 20:29:08 +0000 |
| commit | ba03cb4aea212553f47a9da672fdd897e9f2e620 (patch) | |
| tree | 27a03c72fa0a4416ad32c338947234f46aa7d296 /apps/plugins/clock/clock_counter.c | |
| parent | c003d6c3328a59d071c2497b72b3e926be086530 (diff) | |
| download | rockbox-ba03cb4aea212553f47a9da672fdd897e9f2e620.zip rockbox-ba03cb4aea212553f47a9da672fdd897e9f2e620.tar.gz rockbox-ba03cb4aea212553f47a9da672fdd897e9f2e620.tar.bz2 rockbox-ba03cb4aea212553f47a9da672fdd897e9f2e620.tar.xz | |
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.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); |