fix: 给函数LOS_MutexDelete 前添加(VOID)

Signed-off-by: yinjiaming <yinjiaming@huawei.com>
Change-Id: I49a7c305e955bccca78b80ddeea66330e8b03ac0
This commit is contained in:
yinjiaming 2022-11-01 15:40:23 +08:00
parent 972d765c6e
commit 20ffd89865
1 changed files with 1 additions and 1 deletions

View File

@ -694,7 +694,7 @@ UINT32 OsPipeInit(VOID)
ret = LOS_MuxCreate(&g_devFdMutex); ret = LOS_MuxCreate(&g_devFdMutex);
if (ret != LOS_OK) { if (ret != LOS_OK) {
LOS_MuxDelete(g_devListMutex); (VOID)LOS_MuxDelete(g_devListMutex);
return ret; return ret;
} }