Fix a copy/paste whitespace error.

This commit is contained in:
Matthew D Fleming 2011-04-18 16:40:47 +00:00
parent 7323776b01
commit 5d253e418f

View File

@ -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;