C1025: ',' expected before '...'

[ERROR]

Description

An open parameter list was declared without a ',' before the '...'.

Example
  void foo(int a ...);

  
Tips

Insert a ',' before the '...'.