Commit 86c24976 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

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

parent 2bb59197
......@@ -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());
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment