Skip to content

Commit

Permalink
macho: add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kubkon committed Nov 30, 2023
1 parent 65d5df5 commit 5fc6dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MachO/eh_frame.zig
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub const Cie = struct {
if (enc != EH_PE.pcrel | EH_PE.indirect | EH_PE.sdata4) {
@panic("unexpected personality pointer encoding"); // TODO error
}
_ = try reader.readInt(u32, .little);
_ = try reader.readInt(u32, .little); // personality pointer
},
'L' => {
const enc = try reader.readByte();
Expand Down

0 comments on commit 5fc6dc8

Please sign in to comment.