fix(tmq): fix syntax error.

This commit is contained in:
Haojun Liao 2023-05-04 10:10:56 +08:00
parent a53c181b98
commit 0e1c261418
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ static int32_t mndProcessMqTimerMsg(SRpcMsg *pMsg) {
SMqConsumerClearMsg *pClearMsg = rpcMallocCont(sizeof(SMqConsumerClearMsg));
if (pClearMsg == NULL) {
mError("consumer:0x%"PRIx64" failed to clear consumer due to out of memory. alloc size:%d",
pConsumer->consumerId, sizeof(SMqConsumerClearMsg));
pConsumer->consumerId, (int32_t)sizeof(SMqConsumerClearMsg));
continue;
}