fixed the function signiture with addition of void
.
Basically just added the `void` keyword for consitency with the header of the mocked module.
This commit is contained in:
parent
28f154e30f
commit
60a6cf345f
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ void ADC_Enable(void)
|
|||
mock_c()->actualCall("ADC_Enable");
|
||||
}
|
||||
|
||||
void ADC_Disable()
|
||||
void ADC_Disable(void)
|
||||
{
|
||||
mock_c()->actualCall("ADC_Disable");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue