diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-12-06 17:52:57 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-12-23 22:15:08 -0800 |
| commit | 8328de24f13e21e325207b19288a143854df50df (patch) | |
| tree | ef7c9c46f969e31258a4c052c85f5a9ecfc34b80 /lib/std/debug/Info.zig | |
| parent | dd1d15b72aa3bae4b38e2337609758ffb7a7b55a (diff) | |
| download | zig-8328de24f13e21e325207b19288a143854df50df.tar.gz zig-8328de24f13e21e325207b19288a143854df50df.zip | |
update all occurrences of openFile to receive an io instance
Diffstat (limited to 'lib/std/debug/Info.zig')
| -rw-r--r-- | lib/std/debug/Info.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug/Info.zig b/lib/std/debug/Info.zig index da7656e626..6b31f03f72 100644 --- a/lib/std/debug/Info.zig +++ b/lib/std/debug/Info.zig @@ -39,7 +39,7 @@ pub fn load( ) LoadError!Info { switch (format) { .elf => { - var file = try path.root_dir.handle.openFile(path.sub_path, .{}); + var file = try path.root_dir.handle.openFile(io, path.sub_path, .{}); defer file.close(io); var elf_file: ElfFile = try .load(gpa, file, null, &.none); |
