fix: fix syntax error.

This commit is contained in:
Haojun Liao 2023-03-28 16:05:05 +08:00
parent 7342aeb750
commit 0ae2034ebb
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ int32_t tqPushMsg(STQ* pTq, void* msg, int32_t msgLen, tmsg_t msgType, int64_t v
void* data = taosMemoryMalloc(len);
if (data == NULL) {
terrno = TSDB_CODE_OUT_OF_MEMORY;
tqError("failed to copy data for stream since out of memory, vgId:%d, consumer:0x%"PRIx64, vgId);
tqError("failed to copy data for stream since out of memory, vgId:%d", vgId);
taosWUnLockLatch(&pTq->lock);
return -1;
}