Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jan 2015 07:18:52 +0000 (UTC)
From:      Neel Natu <neel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277168 - head/sys/amd64/vmm
Message-ID:  <201501140718.t0E7IqCo014952@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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",
 	};
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501140718.t0E7IqCo014952>