subparse: fix indentation
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 5 Jun 2011 22:47:58 +0000 (23:47 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 5 Jun 2011 23:23:59 +0000 (00:23 +0100)
gst/subparse/gstsubparse.c

index b4bbb5f..098c9a0 100644 (file)
@@ -1416,8 +1416,8 @@ feed_textbuf (GstSubParse * self, GstBuffer * buf)
   gst_adapter_push (self->adapter, buf);
 
   avail = gst_adapter_available (self->adapter);
-  data = gst_adapter_map (self->adapter, avail),
-      input = convert_encoding (self, (const gchar *) data, avail, &consumed);
+  data = gst_adapter_map (self->adapter, avail);
+  input = convert_encoding (self, (const gchar *) data, avail, &consumed);
 
   if (input && consumed > 0) {
     self->textbuf = g_string_append (self->textbuf, input);