Compiler Warning (level 1) C4219

nonstandard extension used : trailing ',' used for variable argument list

A variable argument list ended with a comma but no ellipsis.

The following example causes this warning:

int func1( int first, );       // warning
int func2( int first, ... );   // OK