Use FcTypeUnknown instead of -1 with type casting.
This seems missed when it was changed.

Patch from brian porter
This commit is contained in:
Akira TAGOH 2013-11-11 11:53:09 +09:00
parent a4443e64c8
commit 38acb08d97
1 changed files with 2 additions and 2 deletions

View File

@ -610,11 +610,11 @@ FcTypecheckValue (FcConfigParse *parse, FcType value, FcType type)
if ((value == FcTypeLangSet && type == FcTypeString) ||
(value == FcTypeString && type == FcTypeLangSet))
return;
if (type == (FcType) -1)
if (type == FcTypeUnknown)
return;
/* It's perfectly fine to use user-define elements in expressions,
* so don't warn in that case. */
if (value == (FcType) -1)
if (value == FcTypeUnknown)
return;
FcConfigMessage (parse, FcSevereWarning, "saw %s, expected %s",
FcTypeName (value), FcTypeName (type));