mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 23:58:17 +00:00
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:
parent
a1ed4ed852
commit
ccd51b031f
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue