From: Dana Jansens Date: Sat, 22 Mar 2003 06:21:06 +0000 (+0000) Subject: cast the pixmap data to a char* for the pixmap_mask_new X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=4135ceb672b124f3ed372414a230b6318d7d9d21;p=chaz%2Fopenbox cast the pixmap data to a char* for the pixmap_mask_new --- diff --git a/engines/openbox/theme.c b/engines/openbox/theme.c index 21042405..915ec9b9 100644 --- a/engines/openbox/theme.c +++ b/engines/openbox/theme.c @@ -164,7 +164,7 @@ gboolean read_mask(XrmDatabase db, char *rname, pixmap_mask **value) } if (ret) { - *value = pixmap_mask_new(w, h, b); + *value = pixmap_mask_new(w, h, (char*)b); XFree(b); }