Fix pointer cast warning on win32

This commit is contained in:
Akira TAGOH 2015-02-24 15:25:16 +09:00
parent f43c58189b
commit 45018e6979
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ FcListValueHash (FcValue *value)
case FcTypeCharSet:
return FcCharSetCount (v.u.c);
case FcTypeFTFace:
return (long) v.u.f;
return (intptr_t) v.u.f;
case FcTypeLangSet:
return FcLangSetHash (v.u.l);
case FcTypeRange: