summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:25 +0900
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-07-03 18:01:25 +0900
commitbdf8399ef790306f9849675f14f19a537e9ce818 (patch)
tree981fb49335b7afbf806c8adb8d4d7bbee961aa21
parentd03e2f981fc9987a22476a6c263219b963315cfb (diff)
downloadfreetype2-bdf8399ef790306f9849675f14f19a537e9ce818.tar.gz
smooth: Fix a data type mismatching with its source.
-rw-r--r--ChangeLog8
-rw-r--r--src/smooth/ftgrays.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 879157f0e..f1c9e8025 100644
--- 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-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
+
+ 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.
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c
index ffe3592b6..b5530f7f9 100644
--- 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 )