winedump: Ensure function order in a printf (PVS-Studio).

oldstable
André Hentschel 2014-10-25 17:55:11 +02:00 committed by Alexandre Julliard
parent 2bb59197ac
commit 86c249760d
1 changed files with 2 additions and 1 deletions

View File

@ -647,7 +647,8 @@ static BOOL dump_msft_custdata(seg_t *seg)
break;
default:
printf(": %x ", n);
printf("\\%2.2x \\%2.2x\n", tlb_read_byte(), tlb_read_byte());
printf("\\%2.2x ", tlb_read_byte());
printf("\\%2.2x\n", tlb_read_byte());
}
}