From 60a6cf345f2960d28f7ec68694335c65e3671cbf Mon Sep 17 00:00:00 2001 From: jake Date: Sun, 9 Mar 2025 09:33:56 -0700 Subject: [PATCH] fixed the function signiture with addition of `void`. Basically just added the `void` keyword for consitency with the header of the mocked module. --- mocks/MockADC/MockADC.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mocks/MockADC/MockADC.c b/mocks/MockADC/MockADC.c index dcf8f8f..7aa530c 100644 --- a/mocks/MockADC/MockADC.c +++ b/mocks/MockADC/MockADC.c @@ -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"); }