mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
[413/906] Fix Windows compiler warning in test/examples/gtk/fxtest/pixbufdrop.c
This commit is contained in:
parent
757d005662
commit
df4b871718
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ on_drag_data_received (GtkWidget * widget,
|
|||
{
|
||||
SourceData *userdata = g_new0 (SourceData, 1);
|
||||
#ifdef G_OS_WIN32
|
||||
gchar *filename = g_filename_from_uri (seldata->data, NULL, NULL);
|
||||
gchar *filename = g_filename_from_uri ((const gchar *) seldata->data, NULL, NULL);
|
||||
#else
|
||||
GdkPixbufFormat *format;
|
||||
gchar **uris = gtk_selection_data_get_uris (seldata);
|
||||
|
|
Loading…
Reference in a new issue