fix(stream): fix a syntax error.

This commit is contained in:
Haojun Liao 2023-08-31 11:48:25 +08:00
parent e53b5d4392
commit ecff0acb73
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ SStreamQueueItem* streamMergeQueueItem(SStreamQueueItem* dst, SStreamQueueItem*
taosFreeQitem(pElem);
return (SStreamQueueItem*)pMerged;
} else {
qDebug("block type:%d not merged with existed blocks list, type:%d", streamGetBlockTypeStr(pElem->type), dst->type);
qDebug("block type:%s not merged with existed blocks list, type:%d", streamGetBlockTypeStr(pElem->type), dst->type);
return NULL;
}
}