diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index a66638a9e0..2b024668bb 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -53,7 +53,7 @@ #define ENCODESQL() \ do { \ if (tEncodeI32(&encoder, pReq->sqlLen) < 0) return -1; \ - if (pReq->sqlLen > 0) { \ + if (pReq->sqlLen > 0) { \ if (tEncodeBinary(&encoder, pReq->sql, pReq->sqlLen) < 0) return -1; \ } \ } while (0)