Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Mar 2013 21:16:02 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r247582 - projects/calloutng/sys/kern
Message-ID:  <201303012116.r21LG27v094753@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Fri Mar  1 21:16:02 2013
New Revision: 247582
URL: http://svnweb.freebsd.org/changeset/base/247582

Log:
  Remove extra newlines.

Modified:
  projects/calloutng/sys/kern/kern_timeout.c

Modified: projects/calloutng/sys/kern/kern_timeout.c
==============================================================================
--- projects/calloutng/sys/kern/kern_timeout.c	Fri Mar  1 21:12:20 2013	(r247581)
+++ projects/calloutng/sys/kern/kern_timeout.c	Fri Mar  1 21:16:02 2013	(r247582)
@@ -958,10 +958,8 @@ callout_reset_sbt_on(struct callout *c, 
 		 * currently in progress.  If there is a lock then we
 		 * can cancel the callout if it has not really started.
 		 */
-		if (c->c_lock != NULL &&
-		    !cc->cc_exec_entity[direct].cc_cancel)
-			cancelled =
-			    cc->cc_exec_entity[direct].cc_cancel = 1;
+		if (c->c_lock != NULL && !cc->cc_exec_entity[direct].cc_cancel)
+			cancelled = cc->cc_exec_entity[direct].cc_cancel = 1;
 		if (cc->cc_exec_entity[direct].cc_waiting) {
 			/*
 			 * Someone has called callout_drain to kill this



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