summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_syscalls.c
diff options
context:
space:
mode:
authormdf <mdf@FreeBSD.org>2011-04-18 16:40:47 +0000
committermdf <mdf@FreeBSD.org>2011-04-18 16:40:47 +0000
commit45c5f278635fd5c0303b813939271191a964eb85 (patch)
tree6c38b2029a4429f47189eaaebfd03d5e43096f6f /sys/kern/vfs_syscalls.c
parentb0f847476623130dd7bdc3665de2f62cf88f7e1f (diff)
downloadFreeBSD-src-45c5f278635fd5c0303b813939271191a964eb85.zip
FreeBSD-src-45c5f278635fd5c0303b813939271191a964eb85.tar.gz
Fix a copy/paste whitespace error.
Diffstat (limited to 'sys/kern/vfs_syscalls.c')
-rw-r--r--sys/kern/vfs_syscalls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
index 26a21e3..ae408ca 100644
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -4699,10 +4699,10 @@ kern_posix_fallocate(struct thread *td, int fd, off_t offset, off_t len)
error = ENODEV;
goto out;
}
- if ((fp->f_flag & FWRITE) == 0) {
- error = EBADF;
+ if ((fp->f_flag & FWRITE) == 0) {
+ error = EBADF;
goto out;
- }
+ }
vp = fp->f_vnode;
if (vp->v_type != VREG) {
error = ENODEV;
OpenPOWER on IntegriCloud