mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-09 05:08:03 +02:00
cache: Cast NULL to a required function type explicitly.
This commit is contained in:
parent
41f9d0d6ee
commit
9f50873a81
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
cache: Cast NULL to a required function type explicitly.
|
||||
|
||||
* src/cache/ftcmanag.c (FTC_Manager_RemoveFaceID):
|
||||
Insert explicit cast from NULL to function type.
|
||||
|
||||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
fttypes.h: Cast FT_MAKE_TAG output to FT_Tag exlicitly.
|
||||
|
|
|
|||
4
src/cache/ftcmanag.c
vendored
4
src/cache/ftcmanag.c
vendored
|
|
@ -665,7 +665,9 @@
|
|||
/* this will remove all FTC_SizeNode that correspond to
|
||||
* the face_id as well
|
||||
*/
|
||||
FTC_MruList_RemoveSelection( &manager->faces, NULL, face_id );
|
||||
FTC_MruList_RemoveSelection( &manager->faces,
|
||||
(FTC_MruNode_CompareFunc)NULL,
|
||||
face_id );
|
||||
|
||||
for ( nn = 0; nn < manager->num_caches; nn++ )
|
||||
FTC_Cache_RemoveFaceID( manager->caches[nn], face_id );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue