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 {
5656
5757pub const Section = struct {
5858 data: []const u8,
59 // If `data` is owned by this Dwarf.
59 /// If `data` is owned by this Dwarf.
6060 owned: bool,
6161
6262 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
178178 break :unwinds buf[0..2];
179179 }
180180 break :unwinds buf[0..1];
181 } else if (opt_eh_frame.*) |eh_frame| {
181 } else if (opt_eh_frame.*) |*eh_frame| {
182182 buf[0] = .initSection(.eh_frame, eh_frame.vaddr, eh_frame.bytes);
183183 break :unwinds buf[0..1];
184184 }