svn commit: r270259 - head/sys/sys
Gavin Atkinson
gavin at FreeBSD.org
Thu Aug 21 07:52:51 UTC 2014
Author: gavin
Date: Thu Aug 21 07:52:51 2014
New Revision: 270259
URL: http://svnweb.freebsd.org/changeset/base/270259
Log:
Add a missing brace to callout_init_rm() to fix syntax.
MFC after: 1 week
Modified:
head/sys/sys/callout.h
Modified: head/sys/sys/callout.h
==============================================================================
--- head/sys/sys/callout.h Thu Aug 21 04:31:48 2014 (r270258)
+++ head/sys/sys/callout.h Thu Aug 21 07:52:51 2014 (r270259)
@@ -72,7 +72,7 @@ void _callout_init_lock(struct callout *
_callout_init_lock((c), ((mtx) != NULL) ? &(mtx)->lock_object : \
NULL, (flags))
#define callout_init_rm(c, rm, flags) \
- _callout_init_lock((c), ((rm != NULL) ? &(rm)->lock_object : \
+ _callout_init_lock((c), ((rm) != NULL) ? &(rm)->lock_object : \
NULL, (flags))
#define callout_init_rw(c, rw, flags) \
_callout_init_lock((c), ((rw) != NULL) ? &(rw)->lock_object : \
More information about the svn-src-head
mailing list