changeset 29895:3ea2508a43ce

sub_fribidi should be static, it is not used outside subreader.c
author reimar
date Fri, 20 Nov 2009 10:32:45 +0000
parents 4c4552f547b3
children ac3e6e27f2c7
files subreader.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/subreader.c	Fri Nov 20 10:24:31 2009 +0000
+++ b/subreader.c	Fri Nov 20 10:32:45 2009 +0000
@@ -1148,7 +1148,7 @@
 #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;