svn commit: r279938 - head/sys/dev/cxgbe
Ian Lepore
ian at FreeBSD.org
Thu Mar 12 23:31:30 UTC 2015
Author: ian
Date: Thu Mar 12 23:31:29 2015
New Revision: 279938
URL: https://svnweb.freebsd.org/changeset/base/279938
Log:
Fix a paste-o, sb is already a pointer in this one.
Modified:
head/sys/dev/cxgbe/t4_l2t.c
Modified: head/sys/dev/cxgbe/t4_l2t.c
==============================================================================
--- head/sys/dev/cxgbe/t4_l2t.c Thu Mar 12 21:15:38 2015 (r279937)
+++ head/sys/dev/cxgbe/t4_l2t.c Thu Mar 12 23:31:29 2015 (r279938)
@@ -321,7 +321,7 @@ skip:
mtx_unlock(&e->lock);
}
- sbuf_putc(&sb, 0); /* nullterm */
+ sbuf_putc(sb, 0); /* nullterm */
rc = sbuf_finish(sb);
sbuf_delete(sb);
More information about the svn-src-all
mailing list