This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

error: #55-D: too many arguments in invocation of macro "Error_Handler"

Hello,
I have an error on keil µvision 5 and i don't arrive to resolve it.
this is the error:
..\Src\utilsSPIRIT1.c(148): error: #55-D: too many arguments in invocation of macro "Error_Handler"

this is the declaration of my fonction :

void Error_Handler(char * c)
{ printf(" >>> ERROR @ %02dh%02dm%02ds : %s\r\n", time.Hours, time.Minutes, time.Seconds, c);
}

here is a function call :

Error_Handler("Com rx bad");

Someone know how i can resolve my issue ?