[DISABLE, INFORMATION, WARNING , ERROR]
There are several different prototypes for the same function in a C module.
int Foo (char,float,int,int* );
int Foo (char,float,int,int**);
int Foo (char,char,int,int**);
Check which one is correct and remove the other(s).