aboutsummaryrefslogtreecommitdiff
path: root/src/cache/ftcmanag.c
diff options
context:
space:
mode:
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-08-01 00:30:18 +0900
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>2009-08-01 00:30:18 +0900
commit9f50873a8120383890993d233d409b3e1c004619 (patch)
tree9d49399368e7982b164388b40db547e61ff64fa9 /src/cache/ftcmanag.c
parent41f9d0d6eebc698a83394f1d97cfb206484ac740 (diff)
downloadfreetype-9f50873a8120383890993d233d409b3e1c004619.tar.gz
cache: Cast NULL to a required function type explicitly.
Diffstat (limited to 'src/cache/ftcmanag.c')
-rw-r--r--src/cache/ftcmanag.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cache/ftcmanag.c b/src/cache/ftcmanag.c
index 831c27b7f..8436bd0ff 100644
--- a/src/cache/ftcmanag.c
+++ b/src/cache/ftcmanag.c
@@ -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 );