docs/manual/basics-helloworld.xml: Add a cast in example to fix compile warning
authorStefan Kost <ensonic@users.sourceforge.net>
Wed, 18 Oct 2006 19:43:46 +0000 (19:43 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Wed, 18 Oct 2006 19:43:46 +0000 (19:43 +0000)
Original commit message from CVS:
* docs/manual/basics-helloworld.xml:
Add a cast in example to fix compile warning

ChangeLog
docs/manual/basics-helloworld.xml

index 400f001..228d7e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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),
index b671cce..890ed93 100644 (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: