From 5a5bda554cc2025a1f994c94b3f5e1810e850caa Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 13 Dec 2006 12:46:28 +0000 Subject: [PATCH] docs/manual/basics-bus.xml: No, gst_main_loop does not exist. Its g_main_loop. Original commit message from CVS: * 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 :) --- ChangeLog | 6 ++++++ docs/manual/basics-bus.xml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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; }