From 7fc31cd0458228c85bf4ef80b96437bfebd0b7f5 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Thu, 31 Mar 2005 08:31:31 +0000 Subject: [PATCH] fix a warning --- render/font.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/render/font.c b/render/font.c index 57d5aa9b..8b0d5dbc 100644 --- a/render/font.c +++ b/render/font.c @@ -79,7 +79,7 @@ static RrFont *openfont(const RrInstance *inst, gchar *fontstring) FcResult res; gint tint; #ifdef USE_PANGO - gchar *tmp_string = NULL; + guchar *tmp_string = NULL; gint tmp_int; #endif /* USE_PANGO */ @@ -100,16 +100,16 @@ static RrFont *openfont(const RrInstance *inst, gchar *fontstring) out->pango_font_description = pango_font_description_new(); if (FcPatternGetString(match, "family", 0, &tmp_string) != FcResultTypeMismatch) { - pango_font_description_set_family(out->pango_font_description, tmp_string); + pango_font_description_set_family(out->pango_font_description, (gchar *)tmp_string); tmp_string = NULL; } if (FcPatternGetString(match, "style", 0, &tmp_string) != FcResultTypeMismatch) { /* Bold ? */ - if (!strcasecmp("bold", tmp_string)) { + if (!strcasecmp("bold", (gchar *)tmp_string)) { pango_font_description_set_weight(out->pango_font_description, PANGO_WEIGHT_BOLD); } /* Italic ? */ - else if (!strcasecmp("italic", tmp_string)) { + else if (!strcasecmp("italic", (gchar *)tmp_string)) { pango_font_description_set_style(out->pango_font_description, PANGO_STYLE_ITALIC); } tmp_string = NULL; -- 2.39.2