From 9268d8449e11c69dd817addee32466c55435bca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 15 Jul 2024 16:01:19 +0800 Subject: [PATCH] IO (Windows): remove debug output Fix #1097 --- src/common/io/io_windows.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/io/io_windows.c b/src/common/io/io_windows.c index ce7cde96a..0af70bd0b 100644 --- a/src/common/io/io_windows.c +++ b/src/common/io/io_windows.c @@ -229,7 +229,6 @@ const char* ffGetTerminalResponse(const char* request, const char* format, ...) hConout = CreateFileW(L"CONOUT$", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_WRITE, 0, OPEN_EXISTING, 0, NULL); hOutput = hConout; } - WriteFile(hOutput, "TEST\n", 5, &bytes, NULL); WriteFile(hOutput, request, (DWORD) strlen(request), &bytes, NULL); }