tests/icles/metadata_editor.c: Add cast to placate gcc 4.1.2.

Original commit message from CVS:
* tests/icles/metadata_editor.c:
Add cast to placate gcc 4.1.2.
This commit is contained in:
Tim-Philipp Müller 2008-04-18 18:51:08 +00:00
parent f7dfc04962
commit a6a13dff0f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-04-18 Tim-Philipp Müller <tim at centricular dot net>
* tests/icles/metadata_editor.c:
Add cast to placate gcc 4.1.2.
2008-04-16 Jan Schmidt <jan.schmidt@sun.com>
* configure.ac:

View file

@ -967,7 +967,7 @@ me_gst_bus_callback_view (GstBus * bus, GstMessage * message, gpointer data)
if (last_pixbuf)
g_object_unref (last_pixbuf);
last_pixbuf = g_value_dup_object (val);
last_pixbuf = GDK_PIXBUF (g_value_dup_object (val));
g_print ("Got image pixbuf: %dx%d\n", gdk_pixbuf_get_width (last_pixbuf),
gdk_pixbuf_get_height (last_pixbuf));