docs/manual/basics-helloworld.xml: Remove superfluous closing bracket in helloworld example.

Original commit message from CVS:
* docs/manual/basics-helloworld.xml:
Remove superfluous closing bracket in helloworld example.
This commit is contained in:
Tim-Philipp Müller 2005-12-18 14:28:25 +00:00
parent a1ed4ed852
commit ccd51b031f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-12-18 Tim-Philipp Müller <tim at centricular dot net>
* docs/manual/basics-helloworld.xml:
Remove superfluous closing bracket in helloworld example.
2005-12-17 Tim-Philipp Müller <tim at centricular dot net>
* tools/gst-launch.1.in:

View file

@ -108,7 +108,7 @@ new_pad (GstElement *element,
/* We can now link this pad with the audio decoder */
g_print ("Dynamic pad created, linking parser/decoder\n");
sinkpad = gst_element_get_pad (decoder, "sink"));
sinkpad = gst_element_get_pad (decoder, "sink");
gst_pad_link (pad, sinkpad);
gst_object_unref (sinkpad);