summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-12 17:50:00 +0000
committerDana Jansens <danakj@orodu.net>2003-08-12 17:50:00 +0000
commitf3926a572bda1212f4454e0cf9b5afa66add4268 (patch)
treea5b5e82503e332152e2347528aa5dd5b6ed6a831 /render
parent35181125f185102f37b53af92a4dbc251d1a6e19 (diff)
kill some warnings
Diffstat (limited to 'render')
-rw-r--r--render/theme.c4
1 files 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 */