Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Sep 2015 20:21:56 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287931 - head/sys/sys
Message-ID:  <201509172021.t8HKLuST083661@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glebius
Date: Thu Sep 17 20:21:55 2015
New Revision: 287931
URL: https://svnweb.freebsd.org/changeset/base/287931

Log:
  Remove extra tabs.

Modified:
  head/sys/sys/systm.h

Modified: head/sys/sys/systm.h
==============================================================================
--- head/sys/sys/systm.h	Thu Sep 17 18:32:51 2015	(r287930)
+++ head/sys/sys/systm.h	Thu Sep 17 20:21:55 2015	(r287931)
@@ -82,12 +82,12 @@ void	kassert_panic(const char *fmt, ...)
 #ifdef	INVARIANTS		/* The option is always available */
 #define	KASSERT(exp,msg) do {						\
 	if (__predict_false(!(exp)))					\
-		kassert_panic msg;						\
+		kassert_panic msg;					\
 } while (0)
 #define	VNASSERT(exp, vp, msg) do {					\
 	if (__predict_false(!(exp))) {					\
 		vn_printf(vp, "VNASSERT failed\n");			\
-		kassert_panic msg;						\
+		kassert_panic msg;					\
 	}								\
 } while (0)
 #else



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