fix(query):fix syntax error.

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

View File

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