svn commit: r244374 - stable/9/sys/sys
Konstantin Belousov
kib at FreeBSD.org
Tue Dec 18 04:23:45 UTC 2012
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) \
More information about the svn-src-stable-9
mailing list