Skip to content
Snippets Groups Projects
Commit 40e58a1a authored by Juan Carrano's avatar Juan Carrano
Browse files

sys/embunit: Fix incompatible declaration in outputter.

OutputterPrintHeaderFunction is declared as a function of 1 parameter
but CompilerOutputter_printHeader was defined as taking 2.

It is a mystery why this code compiled before.
parent 22cb41b8
No related branches found
No related tags found
No related merge requests found
...@@ -35,10 +35,9 @@ ...@@ -35,10 +35,9 @@
#include <stdio.h> #include <stdio.h>
#include "CompilerOutputter.h" #include "CompilerOutputter.h"
static void CompilerOutputter_printHeader(OutputterRef self,TestRef test) static void CompilerOutputter_printHeader(OutputterRef self)
{ {
(void)self; (void)self;
(void)test;
} }
static void CompilerOutputter_printStartTest(OutputterRef self,TestRef test) static void CompilerOutputter_printStartTest(OutputterRef self,TestRef test)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment