mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
souphttpsrc: Fix implicit enum conversion compiler warning
error: implicit conversion from enumeration type 'SoupStatus' to different enumeration type 'SoupKnownStatusCode'
This commit is contained in:
parent
ec1899e456
commit
1a78a7eb22
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ do_get (SoupMessage * msg, const char *path)
|
||||||
|
|
||||||
int buflen = 4096;
|
int buflen = 4096;
|
||||||
|
|
||||||
SoupKnownStatusCode status = SOUP_STATUS_OK;
|
SoupStatus status = SOUP_STATUS_OK;
|
||||||
|
|
||||||
uri = soup_uri_to_string (soup_message_get_uri (msg), FALSE);
|
uri = soup_uri_to_string (soup_message_get_uri (msg), FALSE);
|
||||||
GST_DEBUG ("request: \"%s\"", uri);
|
GST_DEBUG ("request: \"%s\"", uri);
|
||||||
|
|
Loading…
Reference in a new issue