From 764f344ff03c2ac01c5682b75db1af56e95c805a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 9 Dec 2011 17:24:40 +0000 Subject: [PATCH] pbutilsmodule: avoid unused-but-set-variable compiler warning https://bugzilla.gnome.org/show_bug.cgi?id=665868 --- gst/pbutilsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/pbutilsmodule.c b/gst/pbutilsmodule.c index 215eca7..d76ba8a 100644 --- a/gst/pbutilsmodule.c +++ b/gst/pbutilsmodule.c @@ -39,7 +39,7 @@ DL_EXPORT (void) initpbutils (void) { PyObject *m, *d; - PyObject *gst; + PyObject *gst G_GNUC_UNUSED; init_pygobject (); -- 2.7.4