From 05b97544b072ed459d515c5a0f8b790cdb3f0bfb Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Fri, 31 Mar 2023 16:12:30 +0800 Subject: [PATCH] fix(tmq): fix the syntax error. --- source/client/src/clientTmq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/src/clientTmq.c b/source/client/src/clientTmq.c index 0a4e85068d..4558a57609 100644 --- a/source/client/src/clientTmq.c +++ b/source/client/src/clientTmq.c @@ -623,7 +623,7 @@ static void asyncCommitOffset(tmq_t* tmq, const TAOS_RES* pRes, tmq_commit_cb* p } if (j == numOfVgroups) { - tscWarn("consumer:0x" PRIx64 " failed to find the specified vgId:%d, total Vgs:%d, topic:%s", tmq->consumerId, vgId, + tscWarn("consumer:0x%" PRIx64 " failed to find the specified vgId:%d, total Vgs:%d, topic:%s", tmq->consumerId, vgId, numOfVgroups, pTopicName); taosMemoryFree(pParamSet); pCommitFp(tmq, TSDB_CODE_SUCCESS, userParam); -- GitLab