From 72a693870a6f4e9c5cc745e29ea177acd0792a47 Mon Sep 17 00:00:00 2001 From: afwerar <1296468573@qq.com> Date: Fri, 17 Jun 2022 10:25:43 +0800 Subject: [PATCH] os: fix develop win32 compile error --- src/kit/shell/src/shellWindows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kit/shell/src/shellWindows.c b/src/kit/shell/src/shellWindows.c index 990f4739c5..608ec97408 100644 --- a/src/kit/shell/src/shellWindows.c +++ b/src/kit/shell/src/shellWindows.c @@ -377,7 +377,7 @@ int tcpConnect(char* host, int iport) { hints; if (iport == 0) { iport = 6041; - args.port = 6041 + args.port = 6041; } if (NULL == host) { host = "localhost"; -- GitLab