wayland: Fix argument's constness

The compiler was pointing out we were dropping the const modifier.
This commit is contained in:
Emmanuele Bassi
2022-12-06 21:41:29 +00:00
parent 01ac1bbaae
commit 7b02682b1d

View File

@@ -348,7 +348,7 @@ stored_selection_new (GdkWaylandSelection *wayland_selection,
static void
stored_selection_add_data (StoredSelection *stored_selection,
GdkPropMode mode,
guchar *data,
const guchar *data,
gsize data_len)
{
if (mode == GDK_PROP_MODE_REPLACE)