svn commit: r287931 - head/sys/sys

Gleb Smirnoff glebius at FreeBSD.org
Thu Sep 17 20:21:56 UTC 2015


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


More information about the svn-src-head mailing list