Make cache_init static, it is not used outside this file

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30401 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-01-23 11:51:13 +00:00
parent a92b3d446b
commit 0e86058912
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ static int cache_execute_control(cache_vars_t *s) {
return res;
}
cache_vars_t* cache_init(int size,int sector){
static cache_vars_t* cache_init(int size,int sector){
int num;
#if !defined(__MINGW32__) && !defined(PTHREAD_CACHE) && !defined(__OS2__)
cache_vars_t* s=shmem_alloc(sizeof(cache_vars_t));