diff options
author | midipix <writeonce@midipix.org> | 2025-06-12 17:51:28 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-12 17:51:28 +0000 |
commit | e72eab92e4509dd0e925335f2664a602b2d123bd (patch) | |
tree | 303dce037c8cfda181fa61e05a4107e9d940ec65 | |
parent | 60ec6878b0346397edeeafb7b9abe6ed3a057f16 (diff) | |
download | perk-e72eab92e4509dd0e925335f2664a602b2d123bd.tar.bz2 perk-e72eab92e4509dd0e925335f2664a602b2d123bd.tar.xz |
pe_output_image_sections(): relocation symbol: now described.
-rw-r--r-- | src/output/pe_output_image_sections.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/output/pe_output_image_sections.c b/src/output/pe_output_image_sections.c index 5a61ca9..15fc61e 100644 --- a/src/output/pe_output_image_sections.c +++ b/src/output/pe_output_image_sections.c @@ -155,11 +155,12 @@ static int pe_output_section_record_yaml( fdout, " - reloction-record:\n" " - [ rva: 0x%08x ]\n" - " - [ sym: 0x%08x ]\n" + " - [ sym: 0x%08x (%s) ]\n" " - [ type: %s ]\n" "\n", m.rel_rva, m.rel_sym, + meta->m_symvec_symidx[m.rel_sym]->cs_name, reltypedesc) < 0) return PERK_FILE_ERROR(dctx); } |