authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-09-05 15:18:18+01:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2025-09-30 13:44:51+01:00
logd4f710791f88c29e08659241e7976c08fe05ba49
tree1279798b9db864390187ecbd1a9e34276e4bc0d0
parent67fa5664b71202a2b288aa94b9c1bf10de9bdac3
signaturelock-open Commit is signed but in an unrecognized format.

tweaks


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

lib/std/debug/Dwarf.zig+1-1
...@@ -56,7 +56,7 @@ pub const Range = struct {...@@ -56,7 +56,7 @@ pub const Range = struct {
5656
57pub const Section = struct {57pub const Section = struct {
58 data: []const u8,58 data: []const u8,
59 // If `data` is owned by this Dwarf.59 /// If `data` is owned by this Dwarf.
60 owned: bool,60 owned: bool,
6161
62 pub const Id = enum {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,7 +178,7 @@ fn loadUnwindInfo(module: *const ElfModule, gpa: Allocator, di: *DebugInfo) Erro
178 break :unwinds buf[0..2];178 break :unwinds buf[0..2];
179 }179 }
180 break :unwinds buf[0..1];180 break :unwinds buf[0..1];
181 } else if (opt_eh_frame.*) |eh_frame| {181 } else if (opt_eh_frame.*) |*eh_frame| {
182 buf[0] = .initSection(.eh_frame, eh_frame.vaddr, eh_frame.bytes);182 buf[0] = .initSection(.eh_frame, eh_frame.vaddr, eh_frame.bytes);
183 break :unwinds buf[0..1];183 break :unwinds buf[0..1];
184 }184 }