make it compile

This commit is contained in:
Hongze Cheng 2022-11-24 11:54:00 +08:00
parent 54708073f1
commit 504fd15297
1 changed files with 1 additions and 1 deletions

View File

@ -490,7 +490,7 @@ void tRowGet(SRow *pRow, STSchema *pTSchema, int32_t iCol, SColVal *pColVal) {
}
}
void tRowDestroy(SRow *pRow) { tFree(pRow); }
void tRowDestroy(SRow *pRow) { tFree((uint8_t *)pRow); }
// SRowIter ========================================
struct SRowIter {