mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
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:
parent
b1504c37da
commit
14da85cf94
2 changed files with 6 additions and 1 deletions
|
@ -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),
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue