diff --git a/sys/sys/file.h b/sys/sys/file.h --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -479,8 +479,9 @@ 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 @@ active_cred, td)); } - #endif /* _KERNEL */ #endif /* !SYS_FILE_H */