Skip to content

Commit

Permalink
Fix signature mismatches from #131
Browse files Browse the repository at this point in the history
  • Loading branch information
dok-net committed Jul 18, 2024
1 parent e80a7d6 commit 30d9f1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arch/zephyr/forte_Init.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30d9f1d

Please sign in to comment.