!1135 修复 hm_liteipc.c 处的 typo

Merge pull request !1135 from 邹亚龙/master
This commit is contained in:
openharmony_ci 2023-04-03 07:53:57 +00:00 committed by Gitee
commit 249ea71a11
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -1094,7 +1094,7 @@ ERROR_COPY:
return ret; return ret;
} }
LITE_OS_SEC_TEXT STATIC UINT32 CheckRecievedMsg(IpcListNode *node, IpcContent *content, LosTaskCB *tcb) LITE_OS_SEC_TEXT STATIC UINT32 CheckReceivedMsg(IpcListNode *node, IpcContent *content, LosTaskCB *tcb)
{ {
UINT32 ret = LOS_OK; UINT32 ret = LOS_OK;
if (node == NULL) { if (node == NULL) {
@ -1184,7 +1184,7 @@ LITE_OS_SEC_TEXT STATIC UINT32 LiteIpcRead(IpcContent *content)
LOS_ListDelete(listNode); LOS_ListDelete(listNode);
node = LOS_DL_LIST_ENTRY(listNode, IpcListNode, listNode); node = LOS_DL_LIST_ENTRY(listNode, IpcListNode, listNode);
SCHEDULER_UNLOCK(intSave); SCHEDULER_UNLOCK(intSave);
ret = CheckRecievedMsg(node, content, tcb); ret = CheckReceivedMsg(node, content, tcb);
if (ret == LOS_OK) { if (ret == LOS_OK) {
break; break;
} }