Skip to content

Commit

Permalink
Fix a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Jan 18, 2025
1 parent 99c57a8 commit a0fa2c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void QuickTest_run(QuickTest *test)
uint64_t value = 0;
OK(uc_reg_read(uc, out->reg, &value));
acutest_check_(value == out->value, out->file, out->line,
"OUT_REG(%s, 0x%lX) = 0x%lX", out->name,
"OUT_REG(%s, 0x%" PRIx64 ") = 0x%"PRIx64"", out->name,
out->value, value);
} else {
uint32_t value = 0;
Expand Down

0 comments on commit a0fa2c1

Please sign in to comment.