diff options
author | neel <neel@FreeBSD.org> | 2015-01-14 07:18:51 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2015-01-14 07:18:51 +0000 |
commit | 4091be74c6251d91f55098caf1a7ed06b1824534 (patch) | |
tree | 83d0fd90cdbc5babae5590affe960894447836e4 | |
parent | 6354209c5f275ac76f0f7ba57cc92ded7773a5fa (diff) | |
download | FreeBSD-src-4091be74c6251d91f55098caf1a7ed06b1824534.zip FreeBSD-src-4091be74c6251d91f55098caf1a7ed06b1824534.tar.gz |
Fix typo (missing comma).
MFC after: 3 days
-rw-r--r-- | sys/amd64/vmm/vmm_ioport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/vmm/vmm_ioport.c b/sys/amd64/vmm/vmm_ioport.c index 3466b81..fc68a61 100644 --- a/sys/amd64/vmm/vmm_ioport.c +++ b/sys/amd64/vmm/vmm_ioport.c @@ -74,7 +74,7 @@ inout_instruction(struct vm_exit *vmexit) static const char *iodesc[] = { "outb", "outw", "outl", "inb", "inw", "inl", - "outsb", "outsw", "outsd" + "outsb", "outsw", "outsd", "insb", "insw", "insd", }; |