filesink: indentation fixes
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Thu, 3 Dec 2015 23:01:27 +0000 (15:01 -0800)
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Wed, 9 Dec 2015 22:15:26 +0000 (14:15 -0800)
plugins/elements/gstfilesink.c
plugins/elements/gstfilesink.h

index 1432448..dcc92ed 100644 (file)
@@ -219,7 +219,7 @@ gst_file_sink_class_init (GstFileSinkClass * klass)
 
   /**
    * GstFileSink:append
-   * 
+   *
    * Append to an already existing file.
    */
   g_object_class_install_property (gobject_class, PROP_APPEND,
@@ -440,7 +440,7 @@ gst_file_sink_close_file (GstFileSink * sink)
   if (sink->file) {
     if (fclose (sink->file) != 0)
       GST_ELEMENT_ERROR (sink, RESOURCE, CLOSE,
-        (_("Error closing file \"%s\"."), sink->filename), GST_ERROR_SYSTEM);
+          (_("Error closing file \"%s\"."), sink->filename), GST_ERROR_SYSTEM);
 
     GST_DEBUG_OBJECT (sink, "closed file");
     sink->file = NULL;
index bd0e0ba..6e3897c 100644 (file)
@@ -81,7 +81,7 @@ struct _GstFileSink {
   gint    buffer_mode;
   guint   buffer_size;
   gchar  *buffer;
-  
+
   gboolean append;
 };