diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2011-11-03 23:32:49 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-11-03 23:32:49 +0000 |
commit | e71750b7a398197f3884819d0713107b2ce04f08 (patch) | |
tree | 61142002bbd8c8700713bd60ba10b9a974bc2dcc /apps | |
parent | e4cc3d4b3ab72ad5fc897fd4003a97dcab72c22a (diff) |
Make local functions and variables static where possible
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30897 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.c b/apps/dsp.c index 2113d251a1..d9c097af66 100644 --- a/apps/dsp.c +++ b/apps/dsp.c @@ -344,7 +344,7 @@ static int move_callback(int handle, void* current, void* new) return BUFLIB_CB_OK; } -void lock_sample_buf( bool lock ) +static void lock_sample_buf( bool lock ) { if ( lock ) big_sample_locks++; |