mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
f7dfc04962
commit
a6a13dff0f
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue