Compiler Error C2197

'identifier' : too many actual parameters

The specified function was called with too many parameters, or the function declaration was incorrect.

The following is an example of this error:

void func( int );
main()
{
   func( 1, 2 );   // error, two actual parameters
}