Fix a warning

This commit is contained in:
2025-01-18 15:18:37 +08:00
parent 99c57a8ecf
commit a0fa2c1249

View File

@@ -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;