mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
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[] = {
|
||||
{ "RegisterFunction", &PythonLanguage::PyRegisterFunction, METH_VARARGS, NULL },
|
||||
{ NULL, NULL, NULL, 0 } /* sentinel */
|
||||
{ NULL, NULL, 0, NULL } /* sentinel */
|
||||
};
|
||||
|
||||
PythonLanguage::PythonLanguage(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user