From 65c943671e409422e187b25f33a8f898ef5c676e Mon Sep 17 00:00:00 2001 From: Carmen Date: Wed, 2 Apr 2025 23:35:53 +0200 Subject: [PATCH] OpenMode is exhaustive --- lib/std/os/uefi/protocol/file.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/os/uefi/protocol/file.zig b/lib/std/os/uefi/protocol/file.zig index 5610db6540..346fa29cc9 100644 --- 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) {