From 14da85cf9480d60f1c9c840c92d99971414174ce Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 18 Oct 2006 19:43:46 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ docs/manual/basics-helloworld.xml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 400f001..228d7e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-10-18 Stefan Kost + + * docs/manual/basics-helloworld.xml: + Add a cast in example to fix compile warning + 2006-10-18 Wim Taymans * gst/gstsegment.c: (gst_segment_set_last_stop), diff --git a/docs/manual/basics-helloworld.xml b/docs/manual/basics-helloworld.xml index b671cce..890ed93 100644 --- a/docs/manual/basics-helloworld.xml +++ b/docs/manual/basics-helloworld.xml @@ -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: -- 2.7.4