mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
wininet: Fix warnings
This commit is contained in:
parent
f8266ee03f
commit
be59e4d52e
1 changed files with 2 additions and 2 deletions
|
@ -403,9 +403,9 @@ gst_win_inet_src_uri_get_type (void)
|
|||
static gchar **
|
||||
gst_win_inet_src_uri_get_protocols (void)
|
||||
{
|
||||
static gchar *protocols[] = { "http", "https", "ftp", NULL };
|
||||
static const gchar *protocols[] = { "http", "https", "ftp", NULL };
|
||||
|
||||
return protocols;
|
||||
return (gchar **) protocols;
|
||||
}
|
||||
|
||||
static G_CONST_RETURN gchar *
|
||||
|
|
Loading…
Reference in a new issue