mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
filesink: indentation fixes
This commit is contained in:
parent
5f1764232f
commit
c0d2c1e793
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -81,7 +81,7 @@ struct _GstFileSink {
|
|||
gint buffer_mode;
|
||||
guint buffer_size;
|
||||
gchar *buffer;
|
||||
|
||||
|
||||
gboolean append;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue