git: ad8feb1ed999 - main - md.c: another style fix
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 20 Jan 2023 02:40:25 UTC
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=ad8feb1ed9996593df8b4b7259057c6e263aa130
commit ad8feb1ed9996593df8b4b7259057c6e263aa130
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-01-20 02:39:36 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-01-20 02:39:36 +0000
md.c: another style fix
Noted by: jkim
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
---
sys/dev/md/md.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index 44358278a237..bb4b61783c93 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -918,7 +918,7 @@ mdstart_vnode(struct md_s *sc, struct bio *bp)
if (bp->bio_cmd == BIO_FLUSH) {
do {
- (void) vn_start_write(vp, &mp, V_WAIT);
+ (void)vn_start_write(vp, &mp, V_WAIT);
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
error = VOP_FSYNC(vp, MNT_WAIT, td);
VOP_UNLOCK(vp);