diff options
author | Jimmy Ohn <yongjin.ohn@lge.com> | 2015-08-25 17:39:30 +0900 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-09-26 09:47:01 +0100 |
commit | 89a04915fe5f27153b17c3511ce403df7af62b68 (patch) | |
tree | 2237fb9b25e1b17808b1f66db5a82bbe9dfc0d6d /ext/sndfile | |
parent | 69f86e51b2f64608a500b98af0edda0e6d4e95c2 (diff) | |
download | gstreamer-plugins-bad-89a04915fe5f27153b17c3511ce403df7af62b68.tar.gz |
sfdec: Fix typo in goto variable name
https://bugzilla.gnome.org/show_bug.cgi?id=754057
Diffstat (limited to 'ext/sndfile')
-rw-r--r-- | ext/sndfile/gstsfdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sndfile/gstsfdec.c b/ext/sndfile/gstsfdec.c index b67a743b0..d854dba2d 100644 --- a/ext/sndfile/gstsfdec.c +++ b/ext/sndfile/gstsfdec.c @@ -206,7 +206,7 @@ gst_sf_dec_do_seek (GstSFDec * self, GstEvent * event) /* FIXME: we should be using GstSegment for all this */ if (cur_type != GST_SEEK_TYPE_SET || stop_type != GST_SEEK_TYPE_NONE) - goto unsuported_type; + goto unsupported_type; if (stop_type == GST_SEEK_TYPE_NONE) stop = GST_CLOCK_TIME_NONE; @@ -270,7 +270,7 @@ unsupported_format: GST_DEBUG_OBJECT (self, "seeking is only supported in TIME format"); return FALSE; } -unsuported_type: +unsupported_type: { GST_DEBUG_OBJECT (self, "unsupported seek type"); return FALSE; |