diff libass/ass_render.c @ 19066:26a30496ec96

marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
author reynaldo
date Thu, 13 Jul 2006 20:59:18 +0000
parents 96bd8ce93786
children 2ec2301183cd
line wrap: on
line diff
--- a/libass/ass_render.c	Thu Jul 13 20:23:34 2006 +0000
+++ b/libass/ass_render.c	Thu Jul 13 20:59:18 2006 +0000
@@ -1361,7 +1361,7 @@
 	}
 }
 
-int get_face_ascender(FT_Face face)
+static int get_face_ascender(FT_Face face)
 {
 	int v = face->size->metrics.ascender;
 	if (!v)
@@ -1369,7 +1369,7 @@
 	return v;
 }
 
-int get_face_descender(FT_Face face)
+static int get_face_descender(FT_Face face)
 {
 	int v = face->size->metrics.descender;
 	if (!v)