fix(stream): fix syntax error.
This commit is contained in:
parent
67bee17e5e
commit
18bb27cdff
|
@ -855,7 +855,7 @@ static void tLDataIterPinSttBlock(SLDataIter* pIter, const char* id) {
|
|||
return;
|
||||
}
|
||||
|
||||
tsdbError("failed to pin any stt block, sttBlock:%d", pIter->iSttBlk, id);
|
||||
tsdbError("failed to pin any stt block, sttBlock:%d, %s", pIter->iSttBlk, id);
|
||||
}
|
||||
|
||||
static void tLDataIterUnpinSttBlock(SLDataIter* pIter, const char* id) {
|
||||
|
@ -872,7 +872,7 @@ static void tLDataIterUnpinSttBlock(SLDataIter* pIter, const char* id) {
|
|||
return;
|
||||
}
|
||||
|
||||
tsdbError("failed to unpin any stt block, sttBlock:%d", pIter->iSttBlk, id);
|
||||
tsdbError("failed to unpin any stt block, sttBlock:%d, %s", pIter->iSttBlk, id);
|
||||
}
|
||||
|
||||
void tMergeTreePinSttBlock(SMergeTree *pMTree) {
|
||||
|
|
Loading…
Reference in New Issue