summaryrefslogtreecommitdiffstats
path: root/subreader.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-08-12 13:58:29 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-08-12 14:57:12 +0300
commitf6dfaf26f8b513deb8635f75a4115fa04a3c7f4f (patch)
tree594ddee85f97ba4ee9e530ccec6fe2ab18dfe5bb /subreader.c
parentcab2e4f5caf454dd5f96eddfaba9c89c5aad51fc (diff)
downloadmpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.bz2
mpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.xz
Make various functions static
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 c64ff460cc..504f50d383 100644
--- a/subreader.c
+++ b/subreader.c
@@ -1150,7 +1150,7 @@ subtitle* subcp_recode (subtitle *sub)
#ifndef max
#define max(a,b) (((a)>(b))?(a):(b))
#endif
-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;