From 1a28a017b455b5b8d08d4c38f299606a1107222c Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Tue, 22 Dec 2020 13:36:48 +0800 Subject: [PATCH] fix compile error --- src/common/src/tglobal.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/common/src/tglobal.c b/src/common/src/tglobal.c index 673fc16a26..2cf9bcdb8c 100644 --- a/src/common/src/tglobal.c +++ b/src/common/src/tglobal.c @@ -170,15 +170,15 @@ int32_t tsMonitorInterval = 30; // seconds int32_t tsEnableStream = 1; // internal -int32_t tsPrintAuth = 0; -int32_t tscEmbedded = 0; -char configDir[TSDB_FILENAME_LEN] = {0}; -char tsVnodeDir[TSDB_FILENAME_LEN] = {0}; -char tsDnodeDir[TSDB_FILENAME_LEN] = {0}; -char tsMnodeDir[TSDB_FILENAME_LEN] = {0}; -char tsDataDir[TSDB_FILENAME_LEN] = {0}; -char tsScriptDir[TSDB_FILENAME_LEN] = {0}; -int32_t tsDiskCfgNum = 0; +int32_t tsPrintAuth = 0; +uint32_t tscEmbedded = 0; +char configDir[TSDB_FILENAME_LEN] = {0}; +char tsVnodeDir[TSDB_FILENAME_LEN] = {0}; +char tsDnodeDir[TSDB_FILENAME_LEN] = {0}; +char tsMnodeDir[TSDB_FILENAME_LEN] = {0}; +char tsDataDir[TSDB_FILENAME_LEN] = {0}; +char tsScriptDir[TSDB_FILENAME_LEN] = {0}; +int32_t tsDiskCfgNum = 0; #ifndef _STORAGE SDiskCfg tsDiskCfg[1];