pad: fix mixed declarations
authorMathieu Duponchelle <mathieu@centricular.com>
Thu, 1 Mar 2018 00:09:48 +0000 (01:09 +0100)
committerMathieu Duponchelle <mathieu@centricular.com>
Thu, 1 Mar 2018 00:09:48 +0000 (01:09 +0100)
gst/gstpad.c

index 229f3dd..47cace9 100644 (file)
@@ -863,11 +863,12 @@ gst_pad_new (const gchar * name, GstPadDirection direction)
 GstPad *
 gst_pad_new_from_template (GstPadTemplate * templ, const gchar * name)
 {
-  g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
   GType pad_type =
       GST_PAD_TEMPLATE_GTYPE (templ) ==
       G_TYPE_NONE ? GST_TYPE_PAD : GST_PAD_TEMPLATE_GTYPE (templ);
 
+  g_return_val_if_fail (GST_IS_PAD_TEMPLATE (templ), NULL);
+
   return g_object_new (pad_type,
       "name", name, "direction", templ->direction, "template", templ, NULL);
 }