authorgravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2024-01-23 08:09:20+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-23 18:06:23-08:00
logeff58d6c18de66cbf0c0dbd7c3ced9ef9ffbcde6
tree020e56cc0872c5d21617d84d5c0af43d999bf62c
parent993a83081a975464d1201597cf6f4cb7f6735284

os.windows: Fix error 258 name in Win32Error


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os/windows/win32error.zig+1-1
...@@ -380,7 +380,7 @@ pub const Win32Error = enum(u16) {...@@ -380,7 +380,7 @@ pub const Win32Error = enum(u16) {
380 /// The extended attributes are inconsistent.380 /// The extended attributes are inconsistent.
381 EA_LIST_INCONSISTENT = 255,381 EA_LIST_INCONSISTENT = 255,
382 /// The wait operation timed out.382 /// The wait operation timed out.
383 IMEOUT = 258,383 WAIT_TIMEOUT = 258,
384 /// No more data is available.384 /// No more data is available.
385 NO_MORE_ITEMS = 259,385 NO_MORE_ITEMS = 259,
386 /// The copy functions cannot be used.386 /// The copy functions cannot be used.