From ae516ddc679161dd7276d874148016cd91ad915a Mon Sep 17 00:00:00 2001 From: nhmall Date: Sun, 23 Nov 2025 09:49:49 -0500 Subject: [PATCH] follow-up: reverse one warning-related change --- sys/windows/consoletty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/windows/consoletty.c b/sys/windows/consoletty.c index e947561f1..10bc06c37 100644 --- a/sys/windows/consoletty.c +++ b/sys/windows/consoletty.c @@ -774,7 +774,7 @@ emit_start_256color(int u256coloridx) Snprintf(tcolorbuf, sizeof tcolorbuf, tcfmtstr256, (long) u256coloridx); WriteConsoleA(console.hConOut, (LPCSTR) tcolorbuf, - (long) strlen(tcolorbuf), &unused, NULL); + (int) strlen(tcolorbuf), &unused, NULL); } void