svn commit: r200761 - head/sys/kern

Ed Schouten ed at FreeBSD.org
Sun Dec 20 22:55:27 UTC 2009


Author: ed
Date: Sun Dec 20 22:55:27 2009
New Revision: 200761
URL: http://svn.freebsd.org/changeset/base/200761

Log:
  Fix indentation.

Modified:
  head/sys/kern/subr_turnstile.c

Modified: head/sys/kern/subr_turnstile.c
==============================================================================
--- head/sys/kern/subr_turnstile.c	Sun Dec 20 20:51:20 2009	(r200760)
+++ head/sys/kern/subr_turnstile.c	Sun Dec 20 22:55:27 2009	(r200761)
@@ -686,7 +686,7 @@ turnstile_wait(struct turnstile *ts, str
 	 */
 	tc = TC_LOOKUP(ts->ts_lockobj);
 	if (ts == td->td_turnstile) {
-	mtx_assert(&tc->tc_lock, MA_OWNED);
+		mtx_assert(&tc->tc_lock, MA_OWNED);
 #ifdef TURNSTILE_PROFILING
 		tc->tc_depth++;
 		if (tc->tc_depth > tc->tc_max_depth) {


More information about the svn-src-head mailing list