# HG changeset patch # User reimar # Date 1258713165 0 # Node ID 3ea2508a43cee88d40454f7c3a2b8738b7f17f88 # Parent 4c4552f547b307b44ca65539b86d28018accfad0 sub_fribidi should be static, it is not used outside subreader.c diff -r 4c4552f547b3 -r 3ea2508a43ce subreader.c --- 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;