aboutsummaryrefslogtreecommitdiff
path: root/lib/std/debug/Dwarf/Unwind.zig
diff options
context:
space:
mode:
authormlugg <mlugg@mlugg.co.uk>2025-09-29 13:56:56 +0100
committermlugg <mlugg@mlugg.co.uk>2025-09-30 13:44:56 +0100
commit12ceb896faebf25195d8b360e4972dd2bf23ede1 (patch)
tree1749c6f3c1b7502e78e9ac14fad01a61d624064f /lib/std/debug/Dwarf/Unwind.zig
parenta90eb50c8034134d9f22aeffb4ea11e83b056cc7 (diff)
downloadzig-12ceb896faebf25195d8b360e4972dd2bf23ede1.tar.gz
zig-12ceb896faebf25195d8b360e4972dd2bf23ede1.zip
Dwarf.Unwind: fix typo
Diffstat (limited to 'lib/std/debug/Dwarf/Unwind.zig')
-rw-r--r--lib/std/debug/Dwarf/Unwind.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug/Dwarf/Unwind.zig b/lib/std/debug/Dwarf/Unwind.zig
index 90e531b349..8c4c1a19e6 100644
--- a/lib/std/debug/Dwarf/Unwind.zig
+++ b/lib/std/debug/Dwarf/Unwind.zig
@@ -391,7 +391,7 @@ pub const CommonInformationEntry = struct {
'P' => {
const enc: EH.PE = @bitCast(try aug_data.takeByte());
const endian: Endian = .little; // irrelevant because we're discarding the value anyway
- _ = try readEhPointerAbs(&r, enc.type, addr_size_bytes, endian); // we ignore the personality routine; endianness is irrelevant since we're discarding
+ _ = try readEhPointerAbs(&aug_data, enc.type, addr_size_bytes, endian); // we ignore the personality routine; endianness is irrelevant since we're discarding
},
'R' => fde_pointer_enc = @bitCast(try aug_data.takeByte()),
'S' => is_signal_frame = true,