aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
Diffstat (limited to 'executor')
-rw-r--r--executor/test_linux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/test_linux.h b/executor/test_linux.h
index 96e185175..fcd8d855e 100644
--- a/executor/test_linux.h
+++ b/executor/test_linux.h
@@ -71,7 +71,7 @@ static int test_one(int text_type, const char* text, int text_size, int flags, u
printf("KVM_RUN exit reason %d, expect %d\n", cpu_mem->exit_reason, reason);
if (cpu_mem->exit_reason == KVM_EXIT_FAIL_ENTRY)
printf("hardware exit reason 0x%llx\n",
- cpu_mem->fail_entry.hardware_entry_failure_reason);
+ (unsigned long long)cpu_mem->fail_entry.hardware_entry_failure_reason);
dump_cpu_state(cpufd, (char*)vm_mem);
return 1;
}