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

Reply via email to