From: Behdad Esfahbod Date: Mon, 14 Mar 2011 21:58:13 +0000 (-0300) Subject: Fix warning X-Git-Tag: root-2~21 X-Git-Url: https://git.wh0rd.org/?p=fontconfig.git;a=commitdiff_plain;h=f0ee5761e1ab63d848f980a767dd8475986f1342 Fix warning --- diff --git a/fc-lang/fc-lang.c b/fc-lang/fc-lang.c index a13d1bf..51717f9 100644 --- a/fc-lang/fc-lang.c +++ b/fc-lang/fc-lang.c @@ -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; }