From 30d9f1d71c9573c1a883537aee2cc5666bc12712 Mon Sep 17 00:00:00 2001 From: "Dirk O. Kaar" Date: Wed, 3 Jul 2024 08:44:18 +0200 Subject: [PATCH] Fix signature mismatches from #131 --- src/arch/zephyr/forte_Init.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/zephyr/forte_Init.h b/src/arch/zephyr/forte_Init.h index a783ac38..f26c6059 100644 --- a/src/arch/zephyr/forte_Init.h +++ b/src/arch/zephyr/forte_Init.h @@ -63,13 +63,13 @@ extern "C" { * @param paSignal Signal value to terminate instance * @param paInstance Instance to terminate */ - FORTE_SHARED_PREFIX void FORTE_SHARED_CALL forteStopInstance(int paSignal, TForteInstance* paResultInstance); + FORTE_SHARED_PREFIX void FORTE_SHARED_CALL forteStopInstance(int paSignal, TForteInstance paInstance); /** * \brief Terminates a Forte instance * @param paInstance Instance to terminate */ - FORTE_SHARED_PREFIX void FORTE_SHARED_CALL forteJoinInstance(TForteInstance* paResultInstance); + FORTE_SHARED_PREFIX void FORTE_SHARED_CALL forteJoinInstance(TForteInstance paInstance); /** * \brief Initializes the architecture. Prepare all resources needed by the Forte's instances. Must be called once before the first Forte instance is started