docs/manual/basics-helloworld.xml: Add a cast in example to fix compile warning

Original commit message from CVS:
* docs/manual/basics-helloworld.xml:
Add a cast in example to fix compile warning
This commit is contained in:
Stefan Kost 2006-10-18 19:43:46 +00:00
parent b1504c37da
commit 14da85cf94
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-10-18 Stefan Kost <ensonic@users.sf.net>
* docs/manual/basics-helloworld.xml:
Add a cast in example to fix compile warning
2006-10-18 Wim Taymans <wim@fluendo.com>
* gst/gstsegment.c: (gst_segment_set_last_stop),

View file

@ -72,7 +72,7 @@ bus_call (GstBus *bus,
GstMessage *msg,
gpointer data)
{
GMainLoop *loop = data;
GMainLoop *loop = (GMainLoop *) data;
switch (GST_MESSAGE_TYPE (msg)) {
case GST_MESSAGE_EOS: