gsttypefindhelper: Fix indentation

This commit is contained in:
Edward Hervey 2009-05-22 12:57:10 +02:00
parent c2da78a953
commit d72c17e328

View file

@ -526,11 +526,11 @@ gst_type_find_helper_for_extension (GstObject * obj, const gchar * extension)
* extension */ * extension */
for (i = 0; ext[i]; i++) { for (i = 0; ext[i]; i++) {
if (strcmp (ext[i], extension) == 0) { if (strcmp (ext[i], extension) == 0) {
/* we found a matching extension, take the caps */ /* we found a matching extension, take the caps */
if ((result = gst_type_find_factory_get_caps (factory))) { if ((result = gst_type_find_factory_get_caps (factory))) {
gst_caps_ref (result); gst_caps_ref (result);
goto done; goto done;
} }
} }
} }
} }