From 7499404f63ea69e6aa29343a07acf405b4ce5672 Mon Sep 17 00:00:00 2001 From: Mineplay Date: Sat, 18 Oct 2025 09:41:46 -0500 Subject: [PATCH] fix(console coloring): fixed get line duplicate variable in windows --- Src/Core/Console.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Src/Core/Console.c b/Src/Core/Console.c index f34d57f..a33568d 100644 --- a/Src/Core/Console.c +++ b/Src/Core/Console.c @@ -150,7 +150,6 @@ IonyError iony_console_get_line(char *character_string, const long max_length, l } } - DWORD characters_read; if (!ReadFile(iony_standard_console_in, character_string, max_length, characters_read, 0)) { return IONY_ERROR_SYSTEM_CALL_FAILED; }