authorgravatar for carmen@dotcarmen.devCarmen <carmen@dotcarmen.dev> 2025-04-02 23:35:53+02:00
committergravatar for mail@linusgroh.deLinus Groh <mail@linusgroh.de> 2025-04-04 12:42:28+01:00
log65c943671e409422e187b25f33a8f898ef5c676e
tree43ce880580edfcfb2aeee4e3f18f074caffd5770
parenta61678b7549d0113ea30f269b30ccb8e44dc978b

OpenMode is exhaustive


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

lib/std/os/uefi/protocol/file.zig-1
......@@ -316,7 +316,6 @@ pub const File = extern struct {
316316 read = @bitCast(Bits{ .read = true }),
317317 read_write = @bitCast(Bits{ .read = true, .write = true }),
318318 read_write_create = @bitCast(Bits{ .read = true, .write = true, .create = true }),
319 _,
320319 };
321320
322321 pub const Attributes = packed struct(u64) {