From 82293406f131f6bbffa2ef1f90fb55fb4323c9a7 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 5 Jun 2024 09:14:33 +0800 Subject: [PATCH] fix(stream): fix syntax error. --- source/dnode/mnode/impl/src/mndStream.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/dnode/mnode/impl/src/mndStream.c b/source/dnode/mnode/impl/src/mndStream.c index bbf2ad63ce..9bfda65108 100644 --- a/source/dnode/mnode/impl/src/mndStream.c +++ b/source/dnode/mnode/impl/src/mndStream.c @@ -2324,7 +2324,8 @@ static int32_t mndProcessNodeCheckReq(SRpcMsg *pMsg) { taosArrayDestroy(execInfo.pNodeList); execInfo.pNodeList = extractNodeListFromStream(pMnode); execInfo.ts = ts; - mDebug("create trans successfully, update cached node list, numOfNodes:%d", taosArrayGetSize(execInfo.pNodeList)); + mDebug("create trans successfully, update cached node list, numOfNodes:%d", + (int)taosArrayGetSize(execInfo.pNodeList)); } else { mError("unexpected code during create nodeUpdate trans, code:%s", tstrerror(code)); }