summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libgme/inflate
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2015-01-11 21:40:51 +0100
committerThomas Jarosch <tomj@simonv.com>2015-01-11 21:40:51 +0100
commit2a3e1628a50b9de7c1462ee95eb79937795f5409 (patch)
tree3c2c965007a71c4895a65d8a91252b9ce2255719 /lib/rbcodec/codecs/libgme/inflate
parent85c98bc63c6635fe9e337178f23faa9c0ec3f9fb (diff)
downloadrockbox-2a3e1628a50b9de7c1462ee95eb79937795f5409.tar.gz
rockbox-2a3e1628a50b9de7c1462ee95eb79937795f5409.zip
Limit more variables to file scope
Change-Id: I30219d626316776eb73b4205d63376fa3dbc6361
Diffstat (limited to 'lib/rbcodec/codecs/libgme/inflate')
-rw-r--r--lib/rbcodec/codecs/libgme/inflate/mallocer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rbcodec/codecs/libgme/inflate/mallocer.c b/lib/rbcodec/codecs/libgme/inflate/mallocer.c
index 41abedd09f..1e9c235975 100644
--- a/lib/rbcodec/codecs/libgme/inflate/mallocer.c
+++ b/lib/rbcodec/codecs/libgme/inflate/mallocer.c
@@ -9,9 +9,9 @@
9#include "mallocer.h" 9#include "mallocer.h"
10#include "codeclib.h" 10#include "codeclib.h"
11 11
12unsigned char* mallocbuffer[MEMPOOL_MAX]; 12static unsigned char* mallocbuffer[MEMPOOL_MAX];
13long memory_ptr[MEMPOOL_MAX]; 13static long memory_ptr[MEMPOOL_MAX];
14size_t buffersize[MEMPOOL_MAX]; 14static size_t buffersize[MEMPOOL_MAX];
15 15
16int wpw_init_mempool(unsigned char mempool) 16int wpw_init_mempool(unsigned char mempool)
17{ 17{