| author | |
| committer | |
| log | d4f710791f88c29e08659241e7976c08fe05ba49 |
| tree | 1279798b9db864390187ecbd1a9e34276e4bc0d0 |
| parent | 67fa5664b71202a2b288aa94b9c1bf10de9bdac3 |
| signature |
2 files changed, 2 insertions(+), 2 deletions(-)
lib/std/debug/Dwarf.zig+1-1| ... | ... | @@ -56,7 +56,7 @@ pub const Range = struct { |
| 56 | 56 | |
| 57 | 57 | pub const Section = struct { |
| 58 | 58 | data: []const u8, |
| 59 | // If `data` is owned by this Dwarf. | |
| 59 | /// If `data` is owned by this Dwarf. | |
| 60 | 60 | owned: bool, |
| 61 | 61 | |
| 62 | 62 | pub const Id = enum { |
lib/std/debug/SelfInfo/ElfModule.zig+1-1| ... | ... | @@ -178,7 +178,7 @@ fn loadUnwindInfo(module: *const ElfModule, gpa: Allocator, di: *DebugInfo) Erro |
| 178 | 178 | break :unwinds buf[0..2]; |
| 179 | 179 | } |
| 180 | 180 | break :unwinds buf[0..1]; |
| 181 | } else if (opt_eh_frame.*) |eh_frame| { | |
| 181 | } else if (opt_eh_frame.*) |*eh_frame| { | |
| 182 | 182 | buf[0] = .initSection(.eh_frame, eh_frame.vaddr, eh_frame.bytes); |
| 183 | 183 | break :unwinds buf[0..1]; |
| 184 | 184 | } |