svn commit: r261164 - head/sys/dev/virtio/network

Bryan Venteicher bryanv at FreeBSD.org
Sat Jan 25 18:34:57 UTC 2014


Author: bryanv
Date: Sat Jan 25 18:34:57 2014
New Revision: 261164
URL: http://svnweb.freebsd.org/changeset/base/261164

Log:
  Remove stray space

Modified:
  head/sys/dev/virtio/network/if_vtnet.c

Modified: head/sys/dev/virtio/network/if_vtnet.c
==============================================================================
--- head/sys/dev/virtio/network/if_vtnet.c	Sat Jan 25 18:13:43 2014	(r261163)
+++ head/sys/dev/virtio/network/if_vtnet.c	Sat Jan 25 18:34:57 2014	(r261164)
@@ -843,7 +843,7 @@ vtnet_alloc_virtqueues(struct vtnet_soft
 	if (sc->vtnet_flags & VTNET_FLAG_CTRL_VQ)
 		nvqs++;
 
-	info = malloc(sizeof(struct vq_alloc_info) * nvqs , M_TEMP, M_NOWAIT);
+	info = malloc(sizeof(struct vq_alloc_info) * nvqs, M_TEMP, M_NOWAIT);
 	if (info == NULL)
 		return (ENOMEM);
 


More information about the svn-src-all mailing list