svn commit: r247582 - projects/calloutng/sys/kern
Alexander Motin
mav at FreeBSD.org
Fri Mar 1 21:16:03 UTC 2013
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
More information about the svn-src-projects
mailing list