graphics: nxmu: Fix a compile warning with CONFIG_DEBUG_ASSERTIONS=y

Summary:
- This commit fixes a compile warning in nxmu_sendclient.c
- Actually, conn->swrmq will be checked in nxmq_send()

Impact:
- None

Testing:
- Built with spresense:wifi

Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
Masayuki Ishikawa 2021-01-15 10:52:36 +09:00 committed by Xiang Xiao
parent 5f0e334974
commit eaae5dcaea

View File

@ -73,7 +73,7 @@ int nxmu_sendclient(FAR struct nxmu_conn_s *conn, FAR const void *msg,
{
int ret;
DEBUGASSERT(conn != NULL && conn->swrmq != NULL && msg != NULL);
DEBUGASSERT(conn != NULL && msg != NULL);
/* Send the message to the client */