From c316436a4be2281586241bbeef708e2a0e82cf4c Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Thu, 22 Aug 2019 00:18:51 +0900 Subject: [PATCH] souphttpsrc: Fix incompatible type build warning gstsouphttpsrc.c(2191): warning C4133: '=': incompatible types - from 'guint (__cdecl *)(GType)' to 'GstURIType (__cdecl *)(GType)' --- ext/soup/gstsouphttpsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c index 1bedd4e..f06c923 100644 --- a/ext/soup/gstsouphttpsrc.c +++ b/ext/soup/gstsouphttpsrc.c @@ -2148,7 +2148,7 @@ gst_soup_http_src_set_proxy (GstSoupHTTPSrc * src, const gchar * uri) return (src->proxy != NULL); } -static guint +static GstURIType gst_soup_http_src_uri_get_type (GType type) { return GST_URI_SRC; -- 2.7.4