svn commit: r277168 - head/sys/amd64/vmm

Neel Natu neel at FreeBSD.org
Wed Jan 14 07:18:52 UTC 2015


Author: neel
Date: Wed Jan 14 07:18:51 2015
New Revision: 277168
URL: https://svnweb.freebsd.org/changeset/base/277168

Log:
  Fix typo (missing comma).
  
  MFC after:	3 days

Modified:
  head/sys/amd64/vmm/vmm_ioport.c

Modified: head/sys/amd64/vmm/vmm_ioport.c
==============================================================================
--- head/sys/amd64/vmm/vmm_ioport.c	Wed Jan 14 07:02:21 2015	(r277167)
+++ head/sys/amd64/vmm/vmm_ioport.c	Wed Jan 14 07:18:51 2015	(r277168)
@@ -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",
 	};
 


More information about the svn-src-head mailing list