git: 24fee9771e0b - main - sys/file.h: style

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Wed, 24 Jan 2024 05:12:13 UTC
The branch main has been updated by kib:

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

commit 24fee9771e0b1e2f4836b9bb1688cbe8104b403a
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-01-20 21:49:11 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-01-24 05:11:25 +0000

    sys/file.h: style
    
    Reviewed by:    brooks, markj
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D43518
---
 sys/sys/file.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/sys/file.h b/sys/sys/file.h
index cfa0fc75443f..0bdf7e9baa7b 100644
--- a/sys/sys/file.h
+++ b/sys/sys/file.h
@@ -479,8 +479,9 @@ fo_fallocate(struct file *fp, off_t offset, off_t len, struct thread *td)
 	return ((*fp->f_ops->fo_fallocate)(fp, offset, len, td));
 }
 
-static __inline int fo_fspacectl(struct file *fp, int cmd, off_t *offset,
-    off_t *length, int flags, struct ucred *active_cred, struct thread *td)
+static __inline int
+fo_fspacectl(struct file *fp, int cmd, off_t *offset, off_t *length,
+    int flags, struct ucred *active_cred, struct thread *td)
 {
 
 	if (fp->f_ops->fo_fspacectl == NULL)
@@ -489,7 +490,6 @@ static __inline int fo_fspacectl(struct file *fp, int cmd, off_t *offset,
 	    active_cred, td));
 }
 
-
 #endif /* _KERNEL */
 
 #endif /* !SYS_FILE_H */