diff options
author | Akira TAGOH <akira@tagoh.org> | 2015-10-15 15:53:27 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2015-10-15 15:53:27 +0900 |
commit | 6d6ce028eedc6775b61fe768eca4d791ba9db21d (patch) | |
tree | f0b7391fa2b7d62236a38d735df08c0c35099522 /test | |
parent | bd96984e4b1da2e4b422050b773f3ded978d976c (diff) |
Fix compiler warnings on MinGW
Diffstat (limited to 'test')
-rw-r--r-- | test/test-bz89617.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-bz89617.c b/test/test-bz89617.c index 389f4709..587214a7 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; |