diff --git a/ChangeLog b/ChangeLog index 349c11442b..3f332b1a1b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-01-22 Tim-Philipp Müller + + Patch by: Carlos Sanmartin Dominguez + + * docs/manual/basics-bus.xml: + Fix example code, gst_element_unref() doesn't exist any longer. + 2007-01-21 Tim-Philipp Müller Patch by: Mark Nauwelaerts diff --git a/docs/manual/basics-bus.xml b/docs/manual/basics-bus.xml index 022a6e8d3a..c4763bf6a7 100644 --- a/docs/manual/basics-bus.xml +++ b/docs/manual/basics-bus.xml @@ -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;