sfdec: Fix typo in goto variable name
authorJimmy Ohn <yongjin.ohn@lge.com>
Tue, 25 Aug 2015 08:39:30 +0000 (17:39 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 26 Sep 2015 08:47:01 +0000 (09:47 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=754057

ext/sndfile/gstsfdec.c

index b67a743..d854dba 100644 (file)
@@ -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;