git: a45a846c246f - stable/13 - md.c: another style fix

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Sun, 22 Jan 2023 09:19:23 UTC
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=a45a846c246f3ad2b55f3adcaf0066e7569c923a

commit a45a846c246f3ad2b55f3adcaf0066e7569c923a
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2023-01-20 02:39:36 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2023-01-22 09:18:09 +0000

    md.c: another style fix
    
    (cherry picked from commit ad8feb1ed9996593df8b4b7259057c6e263aa130)
---
 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 243ac2be72d9..2e941c991ddb 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -912,7 +912,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);