authorgravatar for yuki@uefi.jpHeppokoyuki <yuki@uefi.jp> 2020-03-12 13:26:00+09:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-12 00:29:30-04:00
log3f1c8e3d58f31dabd22fd6d1fa408512e5cbbb07
tree8c5ecc47af618e00b11e2a5a26ba775a7bce90e4
parent75e9a722db3335da0e8c254a0e04c5775ebfc160

fix bug


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

lib/std/os/uefi/protocols/file_protocol.zig+2-2
......@@ -2,7 +2,7 @@ const uefi = @import("std").os.uefi;
22const Guid = uefi.Guid;
33const Time = uefi.Time;
44
5const FileProtocol = extern struct {
5pub const FileProtocol = extern struct {
66 revision: u64,
77 _open: extern fn (*const FileProtocol, **const FileProtocol, *u16, u64, u64) usize,
88 _close: extern fn (*const FileProtocol) usize,
......@@ -67,7 +67,7 @@ const FileProtocol = extern struct {
6767 pub const efi_file_valid_attr: u64 = 0x0000000000000037;
6868};
6969
70const FileInfo = extern struct {
70pub const FileInfo = extern struct {
7171 size: u64,
7272 file_size: u64,
7373 physical_size: u64,