'function' : function does not take number parameters
The specified function was called with an incorrect number of actual parameters.
Tips
void func( int, int );
void main()
{
func( 1 ); // error, func( int ) not declared
func( 1, 0 ); // OK, func( int, int ) was declared
}