Fix warning

This commit is contained in:
Behdad Esfahbod 2011-03-14 18:58:13 -03:00
parent c21fb9ac27
commit f0ee5761e1
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ scan (FILE *f, char *file, FcCharSetFreezer *freezer)
fatal (file, lineno, "out of memory");
}
}
n = FcCharSetFreeze (freezer, c);
n = (FcCharSet *) FcCharSetFreeze (freezer, c);
FcCharSetDestroy (c);
return n;
}