diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-10-05 06:22:55 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-10-05 06:22:55 +0000 |
commit | 1e4a76bddb0f2d487c99b240db04ff814eae1be1 (patch) | |
tree | 5766af5776eac55708643e678cd4087266c48143 | |
parent | 220019c7b8893eb05ae6ac6c1b1b52feb8766889 (diff) |
change DPRINTF format specifier from %lld to %llx for easier readability
-rw-r--r-- | sys/arch/amd64/amd64/vmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index f5c9e3c204e..b3864b215c8 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.170 2017/09/08 05:36:51 deraadt Exp $ */ +/* $OpenBSD: vmm.c,v 1.171 2017/10/05 06:22:54 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -4371,7 +4371,7 @@ vmx_handle_exit(struct vcpu *vcpu) update_rip = 0; break; default: - DPRINTF("%s: unhandled exit %lld (%s)\n", __func__, + DPRINTF("%s: unhandled exit 0x%llx (%s)\n", __func__, exit_reason, vmx_exit_reason_decode(exit_reason)); return (EINVAL); } |