Skip to content

Commit

Permalink
Fix nasa#1693, correct function name in UT_BSP_Unlock
Browse files Browse the repository at this point in the history
Corrects the log message in UT_BSP_Unlock (in cfe_assert module)
to match the OSAL function called (OS_MutSemGive).
  • Loading branch information
jphickey authored and pavll committed Aug 1, 2021
1 parent f6a9bb7 commit ca57d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/cfe_assert/src/cfe_assert_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void UT_BSP_Unlock(void)
rc = OS_MutSemGive(CFE_Assert_Global.AccessMutex);
if (rc != CFE_SUCCESS)
{
CFE_ES_WriteToSysLog("%s(): Error from OS_MutSemTake(): %d\n", __func__, (int)rc);
CFE_ES_WriteToSysLog("%s(): Error from OS_MutSemGive(): %d\n", __func__, (int)rc);
}
}

Expand Down

0 comments on commit ca57d1a

Please sign in to comment.