diff --git a/ChangeLog b/ChangeLog index 1059844c29..e9c7f9ae10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-12-13 Edward Hervey + + * docs/manual/basics-bus.xml: + No, gst_main_loop does not exist. Its g_main_loop. + Discovered by somebody who abused the copy-paste technique of coding :) + 2006-12-13 Tim-Philipp Müller * gst/gstghostpad.c: diff --git a/docs/manual/basics-bus.xml b/docs/manual/basics-bus.xml index 580863bbdd..022a6e8d3a 100644 --- a/docs/manual/basics-bus.xml +++ b/docs/manual/basics-bus.xml @@ -127,7 +127,7 @@ main (gint argc, /* clean up */ gst_element_set_state (pipeline, GST_STATE_NULL); gst_element_unref (pipeline); - gst_main_loop_unref (loop) + g_main_loop_unref (loop) return 0; }