mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
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.
This commit is contained in:
parent
22cb41b874
commit
40e58a1afc
@ -35,10 +35,9 @@
|
||||
#include <stdio.h>
|
||||
#include "CompilerOutputter.h"
|
||||
|
||||
static void CompilerOutputter_printHeader(OutputterRef self,TestRef test)
|
||||
static void CompilerOutputter_printHeader(OutputterRef self)
|
||||
{
|
||||
(void)self;
|
||||
(void)test;
|
||||
}
|
||||
|
||||
static void CompilerOutputter_printStartTest(OutputterRef self,TestRef test)
|
||||
|
Loading…
Reference in New Issue
Block a user