summaryrefslogtreecommitdiff
path: root/apps/codecs/librm
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2009-08-06 09:28:25 +0000
committerBertrik Sikken <bertrik@sikken.nl>2009-08-06 09:28:25 +0000
commitd767883a417667ceebf5bb241d02337f34bc8016 (patch)
tree7136c4a1fd24d01176d3790e4b5d49f39cd6267b /apps/codecs/librm
parent0307cd16a094b9b03da8fbcf237470ce2ad75cf7 (diff)
downloadrockbox-d767883a417667ceebf5bb241d02337f34bc8016.tar.gz
rockbox-d767883a417667ceebf5bb241d02337f34bc8016.zip
Various files: make functions static if they're local or make sure there is a proper #include if not
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22184 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/librm')
-rw-r--r--apps/codecs/librm/rm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/librm/rm.c b/apps/codecs/librm/rm.c
index b205e7f88d..00ee37a2f2 100644
--- a/apps/codecs/librm/rm.c
+++ b/apps/codecs/librm/rm.c
@@ -29,7 +29,7 @@
29 29
30#define SWAP(a, b) do{uint8_t SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) 30#define SWAP(a, b) do{uint8_t SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
31 31
32void advance_buffer(uint8_t **buf, int val) 32static void advance_buffer(uint8_t **buf, int val)
33{ 33{
34 *buf += val; 34 *buf += val;
35} 35}