Python: Fix a compiler warning.

This commit is contained in:
Gunnar Beutner 2013-03-18 12:36:02 +01:00
parent 6e251251f0
commit 7005c17cf1
1 changed files with 1 additions and 1 deletions

View File

@ -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)