mirror of https://github.com/Icinga/icinga2.git
Python: Fix a compiler warning.
This commit is contained in:
parent
6e251251f0
commit
7005c17cf1
|
@ -35,7 +35,7 @@ REGISTER_SCRIPTLANGUAGE("Python", PythonLanguage);
|
||||||
|
|
||||||
PyMethodDef PythonLanguage::m_NativeMethodDef[] = {
|
PyMethodDef PythonLanguage::m_NativeMethodDef[] = {
|
||||||
{ "RegisterFunction", &PythonLanguage::PyRegisterFunction, METH_VARARGS, NULL },
|
{ "RegisterFunction", &PythonLanguage::PyRegisterFunction, METH_VARARGS, NULL },
|
||||||
{ NULL, NULL, NULL, 0 } /* sentinel */
|
{ NULL, NULL, 0, NULL } /* sentinel */
|
||||||
};
|
};
|
||||||
|
|
||||||
PythonLanguage::PythonLanguage(void)
|
PythonLanguage::PythonLanguage(void)
|
||||||
|
|
Loading…
Reference in New Issue