Fix compilation warning: Cast to guchar*

This commit is contained in:
Javier Jardón 2009-11-09 00:32:50 +01:00
parent c605474fa9
commit 73cfcf9495

View File

@ -72,7 +72,7 @@ save_to_loader (const gchar *buf, gsize count, GError **err, gpointer data)
{ {
GdkPixbufLoader *loader = data; GdkPixbufLoader *loader = data;
return gdk_pixbuf_loader_write (loader, buf, count, err); return gdk_pixbuf_loader_write (loader, (const guchar *)buf, count, err);
} }
static GdkPixbuf * static GdkPixbuf *
@ -82,7 +82,7 @@ buffer_to_pixbuf (const gchar *buf, gsize count, GError **err)
GdkPixbuf *pixbuf; GdkPixbuf *pixbuf;
loader = gdk_pixbuf_loader_new (); loader = gdk_pixbuf_loader_new ();
if (gdk_pixbuf_loader_write (loader, buf, count, err) && if (gdk_pixbuf_loader_write (loader, (const guchar *)buf, count, err) &&
gdk_pixbuf_loader_close (loader, err)) { gdk_pixbuf_loader_close (loader, err)) {
pixbuf = g_object_ref (gdk_pixbuf_loader_get_pixbuf (loader)); pixbuf = g_object_ref (gdk_pixbuf_loader_get_pixbuf (loader));
g_object_unref (loader); g_object_unref (loader);