docs/manual/basics-helloworld.xml: Remove superfluous closing bracket in helloworld...
authorTim-Philipp Müller <tim@centricular.net>
Sun, 18 Dec 2005 14:28:25 +0000 (14:28 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Sun, 18 Dec 2005 14:28:25 +0000 (14:28 +0000)
Original commit message from CVS:
* docs/manual/basics-helloworld.xml:
Remove superfluous closing bracket in helloworld example.

ChangeLog
docs/manual/basics-helloworld.xml

index 28d900c..87603ed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 9aaea7b..21bb62c 100644 (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);