From eff58d6c18de66cbf0c0dbd7c3ced9ef9ffbcde6 Mon Sep 17 00:00:00 2001 From: Krzysztof Wolicki Date: Tue, 23 Jan 2024 08:09:20 +0100 Subject: [PATCH] os.windows: Fix error 258 name in Win32Error --- lib/std/os/windows/win32error.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/os/windows/win32error.zig b/lib/std/os/windows/win32error.zig index 72ff68f571..1bd3803332 100644 --- a/lib/std/os/windows/win32error.zig +++ b/lib/std/os/windows/win32error.zig @@ -380,7 +380,7 @@ pub const Win32Error = enum(u16) { /// The extended attributes are inconsistent. EA_LIST_INCONSISTENT = 255, /// The wait operation timed out. - IMEOUT = 258, + WAIT_TIMEOUT = 258, /// No more data is available. NO_MORE_ITEMS = 259, /// The copy functions cannot be used.