diff options
author | 2018-05-24 07:27:41 +0000 | |
---|---|---|
committer | 2018-05-24 07:27:41 +0000 | |
commit | a9ad51a577430f515268982d1100654a062f53e7 (patch) | |
tree | ce85414fdff11924a9a3435bda15cde7117750f8 | |
parent | Fail earlier if we don't have a current filename. This simlifies the (diff) | |
download | wireguard-openbsd-a9ad51a577430f515268982d1100654a062f53e7.tar.xz wireguard-openbsd-a9ad51a577430f515268982d1100654a062f53e7.zip |
vmm(4): unbreak i386 VMM_DEBUG build
-rw-r--r-- | sys/arch/i386/i386/vmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/vmm.c b/sys/arch/i386/i386/vmm.c index f378476f034..c6083019b0a 100644 --- a/sys/arch/i386/i386/vmm.c +++ b/sys/arch/i386/i386/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.38 2018/04/27 15:45:52 jasper Exp $ */ +/* $OpenBSD: vmm.c,v 1.39 2018/05/24 07:27:41 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -5811,7 +5811,7 @@ vmm_decode_apicbase_msr_value(uint64_t apicbase) uint8_t i; DPRINTF("("); - for (i = 0; i < nitems(acpibase_info); i++) + for (i = 0; i < nitems(apicbase_info); i++) if (apicbase & apicbase_info[i].vrdi_bit) DPRINTF("%s", apicbase_info[i].vrdi_present); else |