svn commit: r254712 - head/sys/sys

Davide Italiano davide at FreeBSD.org
Fri Aug 23 14:40:17 UTC 2013


Author: davide
Date: Fri Aug 23 14:40:17 2013
New Revision: 254712
URL: http://svnweb.freebsd.org/changeset/base/254712

Log:
  Fix the build and fix style.
  
  Pointy-hat to:	davide

Modified:
  head/sys/sys/callout.h

Modified: head/sys/sys/callout.h
==============================================================================
--- head/sys/sys/callout.h	Fri Aug 23 14:40:09 2013	(r254711)
+++ head/sys/sys/callout.h	Fri Aug 23 14:40:17 2013	(r254712)
@@ -71,8 +71,8 @@ void	_callout_init_lock(struct callout *
 #define	callout_init_mtx(c, mtx, flags)					\
 	_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 : \
+#define	callout_init_rm(c, rm, flags)					\
+	_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