From 1e4a76bddb0f2d487c99b240db04ff814eae1be1 Mon Sep 17 00:00:00 2001 From: Mike Larkin Date: Thu, 5 Oct 2017 06:22:55 +0000 Subject: change DPRINTF format specifier from %lld to %llx for easier readability --- sys/arch/amd64/amd64/vmm.c | 4 ++-- 1 file 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 * @@ -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); } -- cgit v1.2.3