summaryrefslogtreecommitdiffstats
path: root/subreader.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-11-20 10:32:45 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-11-20 10:32:45 +0000
commitdc6a72386cf52dd310b5e765cfff595eac2ed596 (patch)
treefa5352b39169d0be3e3378596bc8be5eaa3a9026 /subreader.c
parent752839d86b2ca9d45fdf59a746de1107ee547957 (diff)
downloadmpv-dc6a72386cf52dd310b5e765cfff595eac2ed596.tar.bz2
mpv-dc6a72386cf52dd310b5e765cfff595eac2ed596.tar.xz
sub_fribidi should be static, it is not used outside subreader.c
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29937 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'subreader.c')
-rw-r--r--subreader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/subreader.c b/subreader.c
index 7617cf3239..e93f2ac428 100644
--- a/subreader.c
+++ b/subreader.c
@@ -1148,7 +1148,7 @@ subtitle* subcp_recode (subtitle *sub)
#endif
#ifdef CONFIG_FRIBIDI
-subtitle* sub_fribidi (subtitle *sub, int sub_utf8)
+static subtitle* sub_fribidi (subtitle *sub, int sub_utf8)
{
FriBidiChar logical[LINE_LEN+1], visual[LINE_LEN+1]; // Hopefully these two won't smash the stack
char *ip = NULL, *op = NULL;