mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gstmodule: fix warning when building against python2
PyMapping_GetItemString’ discards ‘const’ qualifier from pointer target type https://bugzilla.gnome.org/show_bug.cgi?id=796093
This commit is contained in:
parent
548dead568
commit
e9d615bf53
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ GST_DEBUG_CATEGORY_STATIC (pygst_debug);
|
|||
#define GST_CAT_DEFAULT pygst_debug
|
||||
|
||||
static PyObject *
|
||||
gi_gst_get_type (const gchar * type_name)
|
||||
gi_gst_get_type (gchar * type_name)
|
||||
{
|
||||
PyObject *module, *dict;
|
||||
|
||||
|
|
Loading…
Reference in a new issue