multifilesink: fix spelling of variable

https://bugzilla.gnome.org/show_bug.cgi?id=758390
This commit is contained in:
Graham Leggett 2015-11-20 12:44:22 +00:00 committed by Tim-Philipp Müller
parent 53f8f1abae
commit 1a55fd42af

View file

@ -180,7 +180,7 @@ static gboolean gst_multi_file_sink_event (GstBaseSink * sink,
static GType
gst_multi_file_sink_next_get_type (void)
{
static GType multi_file_sync_next_type = 0;
static GType multi_file_sink_next_type = 0;
static const GEnumValue next_types[] = {
{GST_MULTI_FILE_SINK_NEXT_BUFFER, "New file for each buffer", "buffer"},
{GST_MULTI_FILE_SINK_NEXT_DISCONT, "New file after each discontinuity",
@ -199,12 +199,12 @@ gst_multi_file_sink_next_get_type (void)
{0, NULL, NULL}
};
if (!multi_file_sync_next_type) {
multi_file_sync_next_type =
if (!multi_file_sink_next_type) {
multi_file_sink_next_type =
g_enum_register_static ("GstMultiFileSinkNext", next_types);
}
return multi_file_sync_next_type;
return multi_file_sink_next_type;
}
#define gst_multi_file_sink_parent_class parent_class