Date: Wed, 31 Jan 2024 00:46:04 GMT From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 0de404fc0b5f - stable/14 - sys/file.h: style Message-ID: <202401310046.40V0k41Y063286@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=0de404fc0b5fbab24f1d5153116a49063099d1c1 commit 0de404fc0b5fbab24f1d5153116a49063099d1c1 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2024-01-20 21:49:11 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2024-01-30 20:24:42 +0000 sys/file.h: style (cherry picked from commit 24fee9771e0b1e2f4836b9bb1688cbe8104b403a) --- 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 dcc739e2e9de..cf2544ee70cf 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -481,8 +481,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) @@ -491,7 +492,6 @@ static __inline int fo_fspacectl(struct file *fp, int cmd, off_t *offset, active_cred, td)); } - #endif /* _KERNEL */ #endif /* !SYS_FILE_H */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401310046.40V0k41Y063286>