summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2017-04-12 05:47:00 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2017-04-12 05:47:00 +0000
commitdd7f1b678676584cec1201836097aae4bd23d71c (patch)
tree357d24fc49d4426e97a48645b342e7ad3a564066
parent7d0419445c12085d7a0ff5a661003bde3493a8dd (diff)
Correct a format string
Problem noted by Michael W. Bombardieri (mb(at)ii.net) ok mlarkin@ deraadt@
-rw-r--r--sys/arch/i386/i386/vmm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/vmm.c b/sys/arch/i386/i386/vmm.c
index 69b90085873..1a484d00bd0 100644
--- a/sys/arch/i386/i386/vmm.c
+++ b/sys/arch/i386/i386/vmm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm.c,v 1.26 2017/03/25 22:24:01 deraadt Exp $ */
+/* $OpenBSD: vmm.c,v 1.27 2017/04/12 05:46:59 guenther Exp $ */
/*
* Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org>
*
@@ -4353,7 +4353,7 @@ vmm_handle_cpuid(struct vcpu *vcpu)
} else {
/* Unsupported subleaf */
DPRINTF("%s: function 0x07 (SEFF) unsupported subleaf "
- "0x%llx not supported\n", __func__, *ecx);
+ "0x%x not supported\n", __func__, *ecx);
*eax = 0;
*ebx = 0;
*ecx = 0;