Skip to content

Commit

Permalink
cfe_es_start: fix CFE_ES_MainTaskSyncDelay() parameter
Browse files Browse the repository at this point in the history
CFE_ES_MainTaskSyncDelay() expects a `TimeOutMilliseconds` parameter.
  • Loading branch information
Nodraak authored May 14, 2024
1 parent 28a5820 commit 2e6ee7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/es/fsw/src/cfe_es_start.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ void CFE_ES_CreateObjects(void)
* newly-started thread calls CFE_ES_WaitForSystemState()
*/
ReturnCode =
CFE_ES_MainTaskSyncDelay(CFE_ES_AppState_RUNNING, CFE_PLATFORM_CORE_MAX_STARTUP_MSEC * 1000);
CFE_ES_MainTaskSyncDelay(CFE_ES_AppState_RUNNING, CFE_PLATFORM_CORE_MAX_STARTUP_MSEC);
}

if (ReturnCode != CFE_SUCCESS)
Expand Down

0 comments on commit 2e6ee7f

Please sign in to comment.