From d91e67acc97263504a7338856b055d565e14c99a Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Sat, 17 Sep 2011 17:20:27 +0000 Subject: plugins: make local functions static for a subset of plugins git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30564 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/stopwatch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins/stopwatch.c') diff --git a/apps/plugins/stopwatch.c b/apps/plugins/stopwatch.c index f70d26bc56..8e3cf8a221 100644 --- a/apps/plugins/stopwatch.c +++ b/apps/plugins/stopwatch.c @@ -330,7 +330,7 @@ static void ticks_to_string(int ticks,int lap,int buflen, char * buf) /* * Load saved stopwatch state, if exists. */ -void load_stopwatch(void) +static void load_stopwatch(void) { int fd; @@ -370,7 +370,7 @@ void load_stopwatch(void) /* * Save stopwatch state. */ -void save_stopwatch(void) +static void save_stopwatch(void) { int fd; -- cgit v1.2.3