diff options
author | Uoti Urpala <uau@symbol.nonexistent.invalid> | 2008-08-12 13:58:29 +0300 |
---|---|---|
committer | Uoti Urpala <uau@symbol.nonexistent.invalid> | 2008-08-12 14:57:12 +0300 |
commit | f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f (patch) | |
tree | 594ddee85f97ba4ee9e530ccec6fe2ab18dfe5bb /subreader.c | |
parent | cab2e4f5caf454dd5f96eddfaba9c89c5aad51fc (diff) | |
download | mpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.bz2 mpv-f6dfaf26f8b513deb8635f75a4115fa04a3c7f4f.tar.xz |
Make various functions static
Diffstat (limited to 'subreader.c')
-rw-r--r-- | subreader.c | 2 |
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; |