docs/manual/basics-bus.xml: Fix example code, gst_element_unref() doesn't exist any longer.

Original commit message from CVS:
Patch by: Carlos Sanmartin Dominguez <csanmartin@igalia.com>
* docs/manual/basics-bus.xml:
Fix example code, gst_element_unref() doesn't exist any longer.
This commit is contained in:
Carlos Sanmartin Dominguez 2007-01-22 14:30:27 +00:00 committed by Tim-Philipp Müller
parent e56bad5b13
commit 7c4dc118f6
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Carlos Sanmartin Dominguez <csanmartin@igalia.com>
* docs/manual/basics-bus.xml:
Fix example code, gst_element_unref() doesn't exist any longer.
2007-01-21 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Mark Nauwelaerts <manauw at skynet be>

View file

@ -126,7 +126,7 @@ main (gint argc,
/* clean up */
gst_element_set_state (pipeline, GST_STATE_NULL);
gst_element_unref (pipeline);
gst_object_unref (pipeline);
g_main_loop_unref (loop)
return 0;