!869 Fix : 给LOS_MuxDelete 函数前添加(VOID)

Merge pull request !869 from yinjiaming/fix
This commit is contained in:
openharmony_ci 2022-11-04 08:23:38 +00:00 committed by Gitee
commit 8ac6771e0d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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;
} }