[Fontconfig] fontconfig: Branch 'master'
Akira TAGOH
tagoh at kemper.freedesktop.org
Wed Oct 14 23:54:32 PDT 2015
test/test-bz89617.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 6d6ce028eedc6775b61fe768eca4d791ba9db21d
Author: Akira TAGOH <akira at tagoh.org>
Date: Thu Oct 15 15:53:27 2015 +0900
Fix compiler warnings on MinGW
diff --git a/test/test-bz89617.c b/test/test-bz89617.c
index 389f470..587214a 100644
--- a/test/test-bz89617.c
+++ b/test/test-bz89617.c
@@ -30,8 +30,8 @@ main (void)
{
FcConfig *config = FcConfigGetCurrent ();
- if (!FcConfigAppFontAddFile (config, SRCDIR "/4x6.pcf") ||
- FcConfigAppFontAddFile (config, "/dev/null"))
+ if (!FcConfigAppFontAddFile (config, (const FcChar8 *)SRCDIR "/4x6.pcf") ||
+ FcConfigAppFontAddFile (config, (const FcChar8 *)"/dev/null"))
return 1;
return 0;
More information about the Fontconfig
mailing list