[FATAL]
The preprocessor tries to resolve a macro expansion. However, there is no macro argument given after the comma separating the different macro arguments.
#define Macro(a,b)
void foo(void) {
Macro(,);
}
Check your macro definition or usage. Generate a preprocessor output (option -Lp) to find the problem.