From: guenther Date: Wed, 12 Apr 2017 05:46:59 +0000 (+0000) Subject: Correct a format string X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=f5ce53beadfff77c965e929753b288cb83e97d95;p=openbsd Correct a format string Problem noted by Michael W. Bombardieri (mb(at)ii.net) ok mlarkin@ deraadt@ --- 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 * @@ -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;