From 935ecd85eaeb959158faa86ce32c03eca98a3665 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 3d78562656..fd905cb26a 100644 --- a/gst/gsturi.c +++ b/gst/gsturi.c @@ -724,11 +724,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);