diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig index d8b318eec85a6e9e8f0b7357f76f47ee18ab270f..8e186c746865dadb9f6fab85d55b9cc3dcb75589 100644 --- a/lib/std/os/windows.zig +++ b/lib/std/os/windows.zig @@ -687,6 +687,7 @@ pub fn WriteFile( .INVALID_HANDLE => return error.NotOpenForWriting, .LOCK_VIOLATION => return error.LockViolation, .NETNAME_DELETED => return error.ConnectionResetByPeer, + .WORKING_SET_QUOTA => return error.SystemResources, else => |err| return unexpectedError(err), } }