From e93368a9f0c6d2cb7a729ce676425eaeecf59669 Mon Sep 17 00:00:00 2001 From: y4my4my4m <8145020+y4my4my4m@users.noreply.github.com> Date: Sat, 13 May 2023 23:39:25 +0900 Subject: [PATCH] Fix --- src/Home/Telnet/Telnet.ZC | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Home/Telnet/Telnet.ZC b/src/Home/Telnet/Telnet.ZC index 32b3849f..2aa9ff93 100644 --- a/src/Home/Telnet/Telnet.ZC +++ b/src/Home/Telnet/Telnet.ZC @@ -29,9 +29,8 @@ I64 TelnetOpen(U8 *host, U16 port) { if (host == NULL) { return -1; } - + DocPrint(term.doc, "$$GREEN$$Connecting to %s:%d.$$FG$$$$BG$$\n", host, port); sock = TCPConnectionCreate(host, port); - "$$GREEN$$Connecting to %s:%d.$$FG$$$$BG$$\n", host, port; if (sock <= 0) { // PrintErr("Failed to connect to %s:%d\n", host, port); PopUpOk("\n\n\tFailed to connect\n\n");