mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-06 11:48:01 +02:00
smooth: Fix a data type mismatching with its source.
This commit is contained in:
parent
ea5268d2d2
commit
93bb15940b
2 changed files with 9 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -1377,7 +1377,7 @@
|
|||
|
||||
for ( ; cell != NULL; cell = cell->next )
|
||||
{
|
||||
TArea area;
|
||||
TPos area;
|
||||
|
||||
|
||||
if ( cell->x > x && cover != 0 )
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue