From 9789adc439d800b2a3eacaf9cafd1fc75af7157c Mon Sep 17 00:00:00 2001 From: shenglian zhou Date: Thu, 8 Dec 2022 07:36:10 +0800 Subject: [PATCH] fix: fix windows compilation error --- source/libs/function/src/tudf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/function/src/tudf.c b/source/libs/function/src/tudf.c index 73f5f8ce68..32e57565d4 100644 --- a/source/libs/function/src/tudf.c +++ b/source/libs/function/src/tudf.c @@ -88,7 +88,7 @@ static int32_t udfSpawnUdfd(SUdfdData *pData) { } #ifdef WINDOWS if (strlen(path) == 0) { - strcat(path, "C:\\TDengine") + strcat(path, "C:\\TDengine"); } strcat(path, "\\udfd.exe"); #else -- GitLab