summaryrefslogtreecommitdiff
path: root/apps/codecs/librm/rm.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/librm/rm.c')
-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}