mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
docs/pwg/building-testapp.xml: Don't use an undeclared variable in the example program.
Original commit message from CVS: Patch by: tmatth <le dot businessman at gmail dot com> * docs/pwg/building-testapp.xml: Don't use an undeclared variable in the example program. Fixes bug #542573.
This commit is contained in:
parent
89d827dac8
commit
c12e6b2e20
3 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-07-12 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
Patch by: tmatth <le dot businessman at gmail dot com>
|
||||
|
||||
* docs/pwg/building-testapp.xml:
|
||||
Don't use an undeclared variable in the example program.
|
||||
Fixes bug #542573.
|
||||
|
||||
2008-07-12 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstdebugutils.c:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 79ade7b9c9bf47eee491ceee4cf3ea116140ad35
|
||||
Subproject commit a100efef186a5f8999fe3aa42c0720f5123c08eb
|
|
@ -187,6 +187,8 @@ main (gint argc,
|
|||
/* run */
|
||||
ret = gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||
if (ret == GST_STATE_CHANGE_FAILURE) {
|
||||
GstMessage *msg;
|
||||
|
||||
g_print ("Failed to start up pipeline!\n");
|
||||
|
||||
/* check if there is an error message with details on the bus */
|
||||
|
|
Loading…
Reference in a new issue