From bbd88e7924be601a8bf58b659d4ee8571285470e Mon Sep 17 00:00:00 2001 From: dmchen Date: Thu, 3 Aug 2023 17:46:45 +0800 Subject: [PATCH] fix wrong merge --- source/common/src/tmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index ba65fba4c6..ad5c5225fa 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -1160,7 +1160,7 @@ int32_t tDeserializeSStatusReq(void *buf, int32_t bufLen, SStatusReq *pReq) { if (tDecodeI64(&decoder, &vload.compStorage) < 0) return -1; if (tDecodeI64(&decoder, &vload.pointsWritten) < 0) return -1; if (tDecodeI32(&decoder, &vload.numOfCachedTables) < 0) return -1; - if (tDecodeI32(&decoder, &vload.learnerProgress) < 0) return -1 + if (tDecodeI32(&decoder, &vload.learnerProgress) < 0) return -1; if (tDecodeI64(&decoder, &reserved) < 0) return -1; if (tDecodeI64(&decoder, &reserved) < 0) return -1; if (taosArrayPush(pReq->pVloads, &vload) == NULL) {