Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2012 04:23:44 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r244374 - stable/9/sys/sys
Message-ID:  <201212180423.qBI4Niiu052675@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Tue Dec 18 04:23:44 2012
New Revision: 244374
URL: http://svnweb.freebsd.org/changeset/base/244374

Log:
  MFC r244238:
  Line up the continuation backslashes.

Modified:
  stable/9/sys/sys/mount.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/sys/mount.h
==============================================================================
--- stable/9/sys/sys/mount.h	Tue Dec 18 04:18:42 2012	(r244373)
+++ stable/9/sys/sys/mount.h	Tue Dec 18 04:23:44 2012	(r244374)
@@ -198,8 +198,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)				\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212180423.qBI4Niiu052675>