mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2026-04-05 06:25:33 +00:00
Merge pull request #673 from chubbymaggie/master
changed '%02hhx' to '%02x' in sample_x86_32_gdt_and_seg_regs.c
This commit is contained in:
commit
1cbf6bf8fc
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ static void gdt_demo()
|
|||
|
||||
int i;
|
||||
for (i = 0; i < 8; i++) {
|
||||
fprintf(stderr, "%02hhx", buf[i]);
|
||||
fprintf(stderr, "%02x", buf[i]);
|
||||
}
|
||||
fprintf(stderr, "\n");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue