From b871bd0a9e7d2b771a437ff6d7376fbd3a9751a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 19 Dec 2011 13:09:42 +0000 Subject: [PATCH] videomodule: fix compiler warning videomodule.c:43:21: error: variable 'gst' set but not used --- gst/videomodule.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/videomodule.c b/gst/videomodule.c index 9308a15c89..ebf677fa99 100644 --- a/gst/videomodule.c +++ b/gst/videomodule.c @@ -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 ();