nonstandard extension used : trailing ',' used for variable argument list
An argument list ends with a comma. The compiler assumes that it is a variable argument list with the ellipsis accidentally left off.
Example
int func1( int first, ); // warning int func2( int first, ... ); // OK