Message ID | 20240620214539.89839-1-pbonzini@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [kvm-unit-tests] fix cirrus-ci-macos-i386 CI job | expand |
diff --git a/x86/asyncpf.c b/x86/asyncpf.c index 9bf2056..ae9c8cc 100644 --- a/x86/asyncpf.c +++ b/x86/asyncpf.c @@ -58,7 +58,7 @@ void* virt; volatile uint64_t i; volatile uint64_t phys; volatile uint32_t saved_token; -volatile uint32_t asyncpf_num; +volatile unsigned asyncpf_num; static inline uint32_t get_and_clear_apf_reason(void) {
Apparently, on that compiler uint32_t is an unsigned long. Whatever. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> --- x86/asyncpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)