svn commit: r244238 - head/sys/sys

Konstantin Belousov kib at FreeBSD.org
Sat Dec 15 02:03:07 UTC 2012


Author: kib
Date: Sat Dec 15 02:03:06 2012
New Revision: 244238
URL: http://svnweb.freebsd.org/changeset/base/244238

Log:
  Line up the continuation backslashes.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/sys/sys/mount.h

Modified: head/sys/sys/mount.h
==============================================================================
--- head/sys/sys/mount.h	Sat Dec 15 02:02:11 2012	(r244237)
+++ head/sys/sys/mount.h	Sat Dec 15 02:03:06 2012	(r244238)
@@ -199,8 +199,8 @@ struct vnode *__mnt_vnode_next_all(struc
 struct vnode *__mnt_vnode_first_all(struct vnode **mvp, struct mount *mp);
 void          __mnt_vnode_markerfree_all(struct vnode **mvp, struct mount *mp);
 
-#define MNT_VNODE_FOREACH_ALL(vp, mp, mvp) \
-	for (vp = __mnt_vnode_first_all(&(mvp), (mp)); \
+#define MNT_VNODE_FOREACH_ALL(vp, mp, mvp)				\
+	for (vp = __mnt_vnode_first_all(&(mvp), (mp));			\
 		(vp) != NULL; vp = __mnt_vnode_next_all(&(mvp), (mp)))
 
 #define MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp)				\


More information about the svn-src-head mailing list