summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-09-17 09:59:10 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:16:55 +0200
commitc310e7cedc4871e1d738ae8c75877bfde06a7b7b (patch)
tree745f6147b8b6321281dc6369ac95f9c1452b6c71
parent29dcd8808d9dc5f0af541eadec51978ab3d71bf8 (diff)
downloadmpv-c310e7cedc4871e1d738ae8c75877bfde06a7b7b.tar.bz2
mpv-c310e7cedc4871e1d738ae8c75877bfde06a7b7b.tar.xz
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
-rw-r--r--libvo/vo_vesa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c
index e66208cae2..024037fd70 100644
--- a/libvo/vo_vesa.c
+++ b/libvo/vo_vesa.c
@@ -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;