diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2008-04-18 18:51:08 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2008-04-18 18:51:08 +0000 |
commit | a6a13dff0fdb282fa445f88654f20f0c5e9305f6 (patch) | |
tree | e667ac1fba66a03f5ef760bfa748c251bcf45a75 /tests/icles | |
parent | f7dfc04962431085c163652173a1a07651483e2d (diff) | |
download | gst-plugins-bad-a6a13dff0fdb282fa445f88654f20f0c5e9305f6.tar.gz gst-plugins-bad-a6a13dff0fdb282fa445f88654f20f0c5e9305f6.tar.bz2 gst-plugins-bad-a6a13dff0fdb282fa445f88654f20f0c5e9305f6.zip |
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.
Diffstat (limited to 'tests/icles')
-rw-r--r-- | tests/icles/metadata_editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/icles/metadata_editor.c b/tests/icles/metadata_editor.c index dcb4942f..4c4afb20 100644 --- a/tests/icles/metadata_editor.c +++ b/tests/icles/metadata_editor.c @@ -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)); |