This commit is contained in:
Hongze Cheng 2024-07-16 14:19:07 +08:00
parent 6aa0b2ff3b
commit 459a452db2
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ int32_t tStartEncode(SEncoder* pCoder) {
pCoder->pos += sizeof(int32_t);
}
TAOS_RETURN(0);
return 0;
}
void tEndEncode(SEncoder* pCoder) {
@ -141,7 +141,7 @@ int32_t tStartDecode(SDecoder* pCoder) {
pNode->pNext = pCoder->dStack;
pCoder->dStack = pNode;
TAOS_RETURN(0);
return 0;
}
void tEndDecode(SDecoder* pCoder) {