videomodule: fix compiler warning

videomodule.c:43:21: error: variable 'gst' set but not used
This commit is contained in:
Tim-Philipp Müller 2011-12-19 13:09:42 +00:00
parent 7f5d2d267d
commit b871bd0a9e

View file

@ -40,7 +40,8 @@ GST_DEBUG_CATEGORY (pygst_debug); /* for python code */
DL_EXPORT (void) DL_EXPORT (void)
initvideo (void) initvideo (void)
{ {
PyObject *m, *d, *gst; PyObject *gst G_GNUC_UNUSED;
PyObject *m, *d;
init_pygobject (); init_pygobject ();
gst = pygst_init (); gst = pygst_init ();