From 4093fc621a477a59bcc39f3176fb5dc244ac87f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 2 Jun 2015 20:32:35 +0100 Subject: [PATCH] uri: match return type of get_uri_type() implementation to declaration https://bugzilla.gnome.org/show_bug.cgi?id=750292 --- gst/gsturi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/gsturi.c b/gst/gsturi.c index eb8cdcc236..e02a65796f 100644 --- a/gst/gsturi.c +++ b/gst/gsturi.c @@ -639,11 +639,11 @@ gst_element_make_from_uri (const GstURIType type, const gchar * uri, * Returns: the #GstURIType of the URI handler. * Returns #GST_URI_UNKNOWN if the @handler isn't implemented correctly. */ -guint +GstURIType gst_uri_handler_get_uri_type (GstURIHandler * handler) { GstURIHandlerInterface *iface; - guint ret; + GstURIType ret; g_return_val_if_fail (GST_IS_URI_HANDLER (handler), GST_URI_UNKNOWN);