Fixed incorrect argument checking.

This commit is contained in:
2009-03-14 13:27:41 +00:00
parent c49bdd1a14
commit 6ba34d18b5
38 changed files with 74 additions and 75 deletions

View File

@@ -160,7 +160,7 @@ PyObject * UnaryFunction0DMaterial___call__( BPy_UnaryFunction0DMaterial *self,
{
PyObject *obj;
if( !PyArg_ParseTuple(args, "O", &obj) && BPy_Interface0DIterator_Check(obj) ) {
if(!PyArg_ParseTuple(args, "O!", &Interface0DIterator_Type, &obj)) {
cout << "ERROR: UnaryFunction0DMaterial___call__ " << endl;
return NULL;
}