git » nmdb » commit 5c3206a

bindings/python: Remove unused variable

author Alberto Bertogli
2012-09-12 23:34:08 UTC
committer Alberto Bertogli
2012-09-12 23:35:23 UTC
parent b9096d9596f9848586b97f165a306743e3a3c494

bindings/python: Remove unused variable

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

bindings/python/nmdb_ll.c +1 -3

diff --git a/bindings/python/nmdb_ll.c b/bindings/python/nmdb_ll.c
index 6c329a3..3921be8 100644
--- a/bindings/python/nmdb_ll.c
+++ b/bindings/python/nmdb_ll.c
@@ -565,11 +565,9 @@ static PyTypeObject nmdbType = {
 
 PyMODINIT_FUNC initnmdb_ll(void)
 {
-	PyObject *m;
-
 	nmdbType.ob_type = &PyType_Type;
 
-	m = Py_InitModule("nmdb_ll", nmdb_functions);
+	Py_InitModule("nmdb_ll", nmdb_functions);
 }
 
 #endif