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 _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"