From 7005c17cf12a6a3883a94913b1f724655313f23f Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 18 Mar 2013 12:36:02 +0100 Subject: [PATCH] Python: Fix a compiler warning. --- lib/python/pythonlanguage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/pythonlanguage.cpp b/lib/python/pythonlanguage.cpp index ae589c5c3..21f813a62 100644 --- a/lib/python/pythonlanguage.cpp +++ b/lib/python/pythonlanguage.cpp @@ -35,7 +35,7 @@ REGISTER_SCRIPTLANGUAGE("Python", PythonLanguage); PyMethodDef PythonLanguage::m_NativeMethodDef[] = { { "RegisterFunction", &PythonLanguage::PyRegisterFunction, METH_VARARGS, NULL }, - { NULL, NULL, NULL, 0 } /* sentinel */ + { NULL, NULL, 0, NULL } /* sentinel */ }; PythonLanguage::PythonLanguage(void) -- 2.40.0