Fix invalid type in PythonLanguage::m_NativeMethodDef.

This commit is contained in:
Gunnar Beutner 2013-03-14 14:12:57 +01:00
parent 016a881634
commit 77461e650a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ REGISTER_SCRIPTLANGUAGE("Python", PythonLanguage);
PyMethodDef PythonLanguage::m_NativeMethodDef[] = {
{ "RegisterFunction", &PythonLanguage::PyRegisterFunction, METH_VARARGS, NULL },
{ NULL, NULL, NULL, NULL } /* sentinel */
{ NULL, NULL, NULL, 0 } /* sentinel */
};
PythonLanguage::PythonLanguage(void)