From 3d9631d1dbda4c88b930f91f69bbcf175f4f4edb Mon Sep 17 00:00:00 2001 From: Lixen Wraith Date: Sat, 1 Aug 2026 09:10:17 -0400 Subject: [PATCH] v0.1.5 windows backend minor fix --- backend_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend_windows.go b/backend_windows.go index da132f0..6077876 100644 --- a/backend_windows.go +++ b/backend_windows.go @@ -131,7 +131,7 @@ func (b *windowsBackend) Read(stopCh <-chan struct{}) ([]byte, error) { if err != nil { return nil, fmt.Errorf("WaitForSingleObject: %w", err) } - if ev == windows.WAIT_TIMEOUT { + if ev == uint32(windows.WAIT_TIMEOUT) { // Mirrors unix poll timeout: lets readLoop emit pending standalone ESC return nil, nil }