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

This commit is contained in:
André Hentschel 2014-10-25 17:55:11 +02:00 committed by Alexandre Julliard
parent 2bb59197ac
commit 86c249760d

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());
}
}