svn commit: r321110 - stable/11/sys/kern

Ngie Cooper ngie at FreeBSD.org
Tue Jul 18 06:57:52 UTC 2017


Author: ngie
Date: Tue Jul 18 06:57:50 2017
New Revision: 321110
URL: https://svnweb.freebsd.org/changeset/base/321110

Log:
  MFC r321109:
  
  Fix whitespace regression accidentally checked in via ^/head at r280149

Modified:
  stable/11/sys/kern/subr_sbuf.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/kern/subr_sbuf.c
==============================================================================
--- stable/11/sys/kern/subr_sbuf.c	Tue Jul 18 06:51:27 2017	(r321109)
+++ stable/11/sys/kern/subr_sbuf.c	Tue Jul 18 06:57:50 2017	(r321110)
@@ -104,7 +104,7 @@ _assert_sbuf_integrity(const char *fun, struct sbuf *s
 	    ("%s called with a NULL sbuf pointer", fun));
 	KASSERT(s->s_buf != NULL,
 	    ("%s called with uninitialized or corrupt sbuf", fun));
-        if (SBUF_ISFINISHED(s) && SBUF_NULINCLUDED(s)) {
+	if (SBUF_ISFINISHED(s) && SBUF_NULINCLUDED(s)) {
 		KASSERT(s->s_len <= s->s_size,
 		    ("wrote past end of sbuf (%jd >= %jd)",
 		    (intmax_t)s->s_len, (intmax_t)s->s_size));


More information about the svn-src-stable-11 mailing list