summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2008-04-18 18:47:43 +0000
committerTim-Philipp Müller <tim@centricular.net>2008-04-18 18:47:43 +0000
commit194229250adc499cc0b20075fd26566549c04ffc (patch)
tree5f21bf7e0aa1cde74f3ecdb2b9fb315895d02faa
parentb13ecc839447b0b30ad4be3d15dec2119a0af277 (diff)
tests/icles/gdkpixbufsink-test.c: Add cast to placate gcc 4.1.2.
Original commit message from CVS: * tests/icles/gdkpixbufsink-test.c: Add cast to placate gcc 4.1.2.
-rw-r--r--ChangeLog5
-rw-r--r--tests/icles/gdkpixbufsink-test.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b45c77dd..6ac98a32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-18 Tim-Philipp Müller <tim at centricular dot net>
+
+ * tests/icles/gdkpixbufsink-test.c:
+ Add cast to placate gcc 4.1.2.
+
2008-04-16 Jan Schmidt <jan.schmidt@sun.com>
* configure.ac:
diff --git a/tests/icles/gdkpixbufsink-test.c b/tests/icles/gdkpixbufsink-test.c
index d23b1828..b09fe09a 100644
--- a/tests/icles/gdkpixbufsink-test.c
+++ b/tests/icles/gdkpixbufsink-test.c
@@ -160,7 +160,7 @@ bus_message_cb (GstBus * bus, GstMessage * msg, AppInfo * info)
val = gst_structure_get_value (msg->structure, "pixbuf");
g_return_if_fail (val != NULL);
- pixbuf = g_value_dup_object (val);
+ pixbuf = GDK_PIXBUF (g_value_dup_object (val));
gtk_image_set_from_pixbuf (GTK_IMAGE (info->img), pixbuf);
g_object_unref (pixbuf);
break;