commit 65c943671e409422e187b25f33a8f898ef5c676e (tree)
parent a61678b7549d0113ea30f269b30ccb8e44dc978b
Author: Carmen <carmen@dotcarmen.dev>
Date: Wed, 2 Apr 2025 23:35:53 +0200
OpenMode is exhaustive
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/lib/std/os/uefi/protocol/file.zig b/lib/std/os/uefi/protocol/file.zig
@@ -316,7 +316,6 @@ pub const File = extern struct {
read = @bitCast(Bits{ .read = true }),
read_write = @bitCast(Bits{ .read = true, .write = true }),
read_write_create = @bitCast(Bits{ .read = true, .write = true, .create = true }),
- _,
};
pub const Attributes = packed struct(u64) {