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 :)
This commit is contained in:
Edward Hervey 2006-12-13 12:46:28 +00:00
parent c8fcab5cf5
commit 5a5bda554c
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-12-13 Edward Hervey <edward@fluendo.com>
* 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 <tim at centricular dot net>
* gst/gstghostpad.c:

View file

@ -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;
}