Fix compiler warnings

This commit is contained in:
Akira TAGOH 2018-01-04 20:32:46 +09:00
parent 706535e107
commit 767e3aa7c5
4 changed files with 7 additions and 4 deletions

View File

@ -47,7 +47,7 @@ retry_locale:
{ {
is_locale_initialized = FcTrue; is_locale_initialized = FcTrue;
if (!fc_atomic_ptr_cmpexch (&static_is_locale_initialized, NULL, if (!fc_atomic_ptr_cmpexch (&static_is_locale_initialized, NULL,
(void *)(long) is_locale_initialized)) (void *)(intptr_t) is_locale_initialized))
goto retry_locale; goto retry_locale;
setlocale (LC_ALL, ""); setlocale (LC_ALL, "");
} }

View File

@ -289,7 +289,9 @@ FcDirCacheScan (const FcChar8 *dir, FcConfig *config)
struct stat dir_stat; struct stat dir_stat;
const FcChar8 *sysroot = FcConfigGetSysRoot (config); const FcChar8 *sysroot = FcConfigGetSysRoot (config);
FcChar8 *d; FcChar8 *d;
#ifndef _WIN32
int fd = -1; int fd = -1;
#endif
if (sysroot) if (sysroot)
d = FcStrBuildFilename (sysroot, dir, NULL); d = FcStrBuildFilename (sysroot, dir, NULL);
@ -353,7 +355,9 @@ FcDirCacheRescan (const FcChar8 *dir, FcConfig *config)
FcStrSet *dirs; FcStrSet *dirs;
const FcChar8 *sysroot = FcConfigGetSysRoot (config); const FcChar8 *sysroot = FcConfigGetSysRoot (config);
FcChar8 *d = NULL; FcChar8 *d = NULL;
#ifndef _WIN32
int fd = -1; int fd = -1;
#endif
cache = FcDirCacheLoad (dir, config, NULL); cache = FcDirCacheLoad (dir, config, NULL);
if (!cache) if (!cache)

View File

@ -1767,7 +1767,7 @@ FcFreeTypeQueryFaceInternal (const FT_Face face,
{ {
weight = FcIsWeight ((FcChar8 *) psfontinfo.weight); weight = FcIsWeight ((FcChar8 *) psfontinfo.weight);
if (FcDebug() & FC_DBG_SCANV) if (FcDebug() & FC_DBG_SCANV)
printf ("\tType1 weight %s maps to %d\n", printf ("\tType1 weight %s maps to %g\n",
psfontinfo.weight, weight); psfontinfo.weight, weight);
} }
@ -1845,7 +1845,7 @@ FcFreeTypeQueryFaceInternal (const FT_Face face,
{ {
weight = FcContainsWeight (style); weight = FcContainsWeight (style);
if (FcDebug() & FC_DBG_SCANV) if (FcDebug() & FC_DBG_SCANV)
printf ("\tStyle %s maps to weight %d\n", style, weight); printf ("\tStyle %s maps to weight %g\n", style, weight);
} }
if (width == -1) if (width == -1)
{ {

View File

@ -46,7 +46,6 @@ comp(const FcChar8 *l1, const FcChar8 *l2)
int int
main(void) main(void)
{ {
FcLangResult result;
int i = 1; int i = 1;
/* 1 */ /* 1 */