vo_vesa: mark a function static

Mark fillMultiBuffer() as static, it is not used outside of the file; fixes:
libvo/vo_vesa.c:532: warning: no previous prototype for 'fillMultiBuffer'

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32284 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-09-17 09:59:10 +00:00 committed by Uoti Urpala
parent 29dcd8808d
commit c310e7cedc
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ static char *model2str(unsigned char type)
return retval;
}
unsigned fillMultiBuffer( unsigned long vsize, unsigned nbuffs )
static unsigned fillMultiBuffer(unsigned long vsize, unsigned nbuffs)
{
unsigned long screen_size, offset;
unsigned total,i;