smooth: Fix a data type mismatching with its source.

This commit is contained in:
suzuki toshiya 2009-07-03 18:01:25 +09:00
parent d03e2f981f
commit bdf8399ef7
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2009-07-03 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
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.

View File

@ -1377,7 +1377,7 @@
for ( ; cell != NULL; cell = cell->next )
{
TArea area;
TPos area;
if ( cell->x > x && cover != 0 )