diff options
| author | Lwazi Dube <lwazeh@gmail.com> | 2025-08-20 14:23:04 -0400 |
|---|---|---|
| committer | Linus Groh <mail@linusgroh.de> | 2025-08-21 03:10:28 +0100 |
| commit | cab6d752e8f6f6d3f538075840acc108238feda3 (patch) | |
| tree | e4559a27850a34fef2b3676b81691ee7e72733e0 /lib/std | |
| parent | 8248597a2726663a89e31896f0e9751db5b9db82 (diff) | |
| download | zig-cab6d752e8f6f6d3f538075840acc108238feda3.tar.gz zig-cab6d752e8f6f6d3f538075840acc108238feda3.zip | |
std.os.uefi: Fix typo that causes compile time error #22809"
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/os/uefi/protocol/service_binding.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/uefi/protocol/service_binding.zig b/lib/std/os/uefi/protocol/service_binding.zig index 06cc64001e..ddbda29ee6 100644 --- a/lib/std/os/uefi/protocol/service_binding.zig +++ b/lib/std/os/uefi/protocol/service_binding.zig @@ -1,5 +1,5 @@ const std = @import("std"); -const uefi = std.uefi; +const uefi = std.os.uefi; const Guid = uefi.Guid; const Handle = uefi.Handle; const Status = uefi.Status; |
