mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
videomodule: fix compiler warning
videomodule.c:43:21: error: variable 'gst' set but not used
This commit is contained in:
parent
7f5d2d267d
commit
b871bd0a9e
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ GST_DEBUG_CATEGORY (pygst_debug); /* for python code */
|
|||
DL_EXPORT (void)
|
||||
initvideo (void)
|
||||
{
|
||||
PyObject *m, *d, *gst;
|
||||
PyObject *gst G_GNUC_UNUSED;
|
||||
PyObject *m, *d;
|
||||
|
||||
init_pygobject ();
|
||||
gst = pygst_init ();
|
||||
|
|
Loading…
Reference in a new issue