smooth: Fix a data type mismatching with its source.

This commit is contained in:
suzuki toshiya 2009-08-01 00:30:21 +09:00
parent ea5268d2d2
commit 93bb15940b
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2009-07-31 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-31 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 )