Skip to content

Commit

Permalink
Merge pull request #1694 from jphickey/fix-1693-logmessage-mismatch
Browse files Browse the repository at this point in the history
Fix #1693, correct function name in UT_BSP_Unlock
  • Loading branch information
astrogeco authored Jul 21, 2021
2 parents c71a27e + 8fd8ab7 commit 8bbdd16
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 8bbdd16

Please sign in to comment.