From c0d2c1e7931916861dbe1aa779c2e76f0f25946c Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Thu, 3 Dec 2015 15:01:27 -0800 Subject: [PATCH] filesink: indentation fixes --- plugins/elements/gstfilesink.c | 4 ++-- plugins/elements/gstfilesink.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/elements/gstfilesink.c b/plugins/elements/gstfilesink.c index 1432448d13..dcc92edd0e 100644 --- a/plugins/elements/gstfilesink.c +++ b/plugins/elements/gstfilesink.c @@ -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; diff --git a/plugins/elements/gstfilesink.h b/plugins/elements/gstfilesink.h index bd0e0ba61e..6e3897c4e0 100644 --- a/plugins/elements/gstfilesink.h +++ b/plugins/elements/gstfilesink.h @@ -81,7 +81,7 @@ struct _GstFileSink { gint buffer_mode; guint buffer_size; gchar *buffer; - + gboolean append; };