summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@sharp.fm>2015-11-20 12:44:22 +0000
committerTim-Philipp Müller <tim@centricular.com>2015-11-23 11:36:20 +0000
commit1a55fd42af6d4d76166f7fc80ed3f9afe8cec616 (patch)
tree585c2c5f88b41975e6bc1556d5e971b3f5906077
parent53f8f1abaeceb15f213cff16156c2f1c5a39da46 (diff)
multifilesink: fix spelling of variable
https://bugzilla.gnome.org/show_bug.cgi?id=758390
-rw-r--r--gst/multifile/gstmultifilesink.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/multifile/gstmultifilesink.c b/gst/multifile/gstmultifilesink.c
index ebc22c265..c74c20bdd 100644
--- a/gst/multifile/gstmultifilesink.c
+++ b/gst/multifile/gstmultifilesink.c
@@ -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