From 504fd152973a983b79263cffc3c954164af05928 Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Thu, 24 Nov 2022 11:54:00 +0800 Subject: [PATCH] make it compile --- source/common/src/tdataformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tdataformat.c b/source/common/src/tdataformat.c index 9b4547f71c..60f473b171 100644 --- a/source/common/src/tdataformat.c +++ b/source/common/src/tdataformat.c @@ -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 {