From 20ffd898657d847432a1b8bfb2176ca96a26e65d Mon Sep 17 00:00:00 2001 From: yinjiaming Date: Tue, 1 Nov 2022 15:40:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BB=99=E5=87=BD=E6=95=B0LOS=5FMutexDe?= =?UTF-8?q?lete=20=E5=89=8D=E6=B7=BB=E5=8A=A0(VOID)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yinjiaming Change-Id: I49a7c305e955bccca78b80ddeea66330e8b03ac0 --- kal/posix/src/pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kal/posix/src/pipe.c b/kal/posix/src/pipe.c index 4613884b..bb0a3be8 100644 --- a/kal/posix/src/pipe.c +++ b/kal/posix/src/pipe.c @@ -694,7 +694,7 @@ UINT32 OsPipeInit(VOID) ret = LOS_MuxCreate(&g_devFdMutex); if (ret != LOS_OK) { - LOS_MuxDelete(g_devListMutex); + (VOID)LOS_MuxDelete(g_devListMutex); return ret; } -- Gitee