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)                           \
_______________________________________________
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