shithub: freetype+ttf2subf

Download patch

ref: 93bb15940bf51ec4dfa3d4b22292b90569cc5bf1
parent: ea5268d2d2b61dcefdc116e061dd7b2ffb486b02
author: suzuki toshiya <[email protected]>
date: Fri Jul 31 20:30:21 EDT 2009

smooth: Fix a data type mismatching with its source.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,14 @@
 
 	smooth: Fix a data type mismatching with its source.
 
+	* src/smooth/ftgrays.c (gray_sweep): The type of
+	`area' is matched with the 3rd argument `area'
+	of gray_hline().
+
+2009-07-31  suzuki toshiya <[email protected]>
+
+	smooth: Fix a data type mismatching with its source.
+
 	* src/smooth/ftgrays.c (gray_render_line): The type
 	of `area' is matched with TWorker.area.
 
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -1377,7 +1377,7 @@
 
       for ( ; cell != NULL; cell = cell->next )
       {
-        TArea  area;
+        TPos  area;
 
 
         if ( cell->x > x && cover != 0 )