fix more
This commit is contained in:
parent
6aa0b2ff3b
commit
459a452db2
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue