diff options
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ports/SkFontHost_fontconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skia/ports/SkFontHost_fontconfig.cpp b/skia/ports/SkFontHost_fontconfig.cpp index 42cce0d..d060198 100644 --- a/skia/ports/SkFontHost_fontconfig.cpp +++ b/skia/ports/SkFontHost_fontconfig.cpp @@ -173,7 +173,7 @@ static FcPattern* FontMatch(const char* type, FcType vtype, const void* value, const bool family_names_match = !family_requested ? true : - strcmp((char *) post_config_family, (char *) post_match_family) == 0; + strcasecmp((char *) post_config_family, (char *) post_match_family) == 0; FcPatternDestroy(pattern); |