diff options
author | midipix <writeonce@midipix.org> | 2025-06-12 12:29:52 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-12 12:29:52 +0000 |
commit | 73d2ea3621e670191bb3356a91e4fc4c3f25e89c (patch) | |
tree | fba2f2baf82bdde36782629a110714d0ba2d4d61 /src | |
parent | 49d195e3fe64e7783efbcbf9e415e95bb4ae7305 (diff) | |
download | perk-73d2ea3621e670191bb3356a91e4fc4c3f25e89c.tar.bz2 perk-73d2ea3621e670191bb3356a91e4fc4c3f25e89c.tar.xz |
pe_output_image_symbols(): fix formatting redundancy.
Diffstat (limited to 'src')
-rw-r--r-- | src/output/pe_output_image_symbols.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/output/pe_output_image_symbols.c b/src/output/pe_output_image_symbols.c index 4847aac..95ce42f 100644 --- a/src/output/pe_output_image_symbols.c +++ b/src/output/pe_output_image_symbols.c @@ -197,8 +197,8 @@ static int pe_output_symbol_records_yaml( pe_read_aux_rec_weaksym(coffsym,&auxrec,idx); if (pe_dprintf(fdout, - " - [ tag-index: = %d ]\n" - " - [ tag-characteristics: = 0x%01X (%s) ]\n\n", + " - [ tag-index: %d ]\n" + " - [ tag-characteristics: 0x%01X (%s) ]\n\n", auxrec.aux_tag_index, auxrec.aux_characteristics, pe_weak_extern_switches[auxrec.aux_characteristics & 0x03]) < 0) @@ -220,12 +220,12 @@ static int pe_output_symbol_records_yaml( pe_read_aux_rec_section(coffsym,&auxrec,idx); if (pe_dprintf(fdout, - " - [ size: = 0x%08x ]\n" - " - [ num-of-relocs: = 0x%08X ]\n" - " - [ num-of-line-nums: = 0x%08X ]\n" - " - [ check-sum: = 0x%08X ]\n" - " - [ number: = %u ]\n" - " - [ selection: = %u ]\n" + " - [ size: 0x%08x ]\n" + " - [ num-of-relocs: 0x%08X ]\n" + " - [ num-of-line-nums: 0x%08X ]\n" + " - [ check-sum: 0x%08X ]\n" + " - [ number: %u ]\n" + " - [ selection: %u ]\n" "\n", auxrec.aux_size, auxrec.aux_num_of_relocs, |