From 1e106bd10f2f559d90be055f77946bf34dc61cca Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Fri, 1 Dec 2023 14:22:47 +0800 Subject: [PATCH] valid msg --- 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 d9be51e04b..11a47142b8 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -49,7 +49,7 @@ inline bool tmsgIsValid(tmsg_t type) { return false; } -inline char *TMSG_INFO(tmsg_t type) { return (tmsgIsValid(type) ? tMsgInfo[TMSG_INDEX(type)] : "null"); }; +inline char *TMSG_INFO(tmsg_t type) { return (tmsgIsValid(type) ? tMsgInfo[TMSG_INDEX(type)] : "unKnown"); }; #define DECODESQL() \ do { \ if (!tDecodeIsEnd(&decoder)) { \