From 89a04915fe5f27153b17c3511ce403df7af62b68 Mon Sep 17 00:00:00 2001 From: Jimmy Ohn Date: Tue, 25 Aug 2015 17:39:30 +0900 Subject: [PATCH] sfdec: Fix typo in goto variable name https://bugzilla.gnome.org/show_bug.cgi?id=754057 --- ext/sndfile/gstsfdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/sndfile/gstsfdec.c b/ext/sndfile/gstsfdec.c index b67a743b08..d854dba2d8 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;