From 73d2ea3621e670191bb3356a91e4fc4c3f25e89c Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 12 Jun 2025 12:29:52 +0000 Subject: pe_output_image_symbols(): fix formatting redundancy. --- src/output/pe_output_image_symbols.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/output/pe_output_image_symbols.c') 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, -- cgit v1.2.3