From f3926a572bda1212f4454e0cf9b5afa66add4268 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 12 Aug 2003 17:50:00 +0000 Subject: [PATCH] kill some warnings --- render/theme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render/theme.c b/render/theme.c index 51a22703..943f6903 100644 --- a/render/theme.c +++ b/render/theme.c @@ -398,8 +398,8 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name) } if (!read_mask(inst, "bullet.xbm", theme, &theme->menu_bullet_mask)) { - char data[] = { 0x18, 0x30, 0x60, 0xfe, 0xfe, 0x60, 0x30, 0x18 }; - theme->menu_bullet_mask = RrPixmapMaskNew(inst, 8, 8, data); + guchar data[] = { 0x18, 0x30, 0x60, 0xfe, 0xfe, 0x60, 0x30, 0x18 }; + theme->menu_bullet_mask = RrPixmapMaskNew(inst, 8, 8, (char*)data); } /* read the decoration textures */ -- 2.39.2