kern/sys_generic.c: style(9) return(foo) -> return (foo)

No functional change.

Sponsored by:	Dell EMC Isilon
This commit is contained in:
cem 2018-02-24 01:15:33 +00:00
parent 8359115798
commit 53052ebdcf

View File

@ -206,7 +206,7 @@ sys_read(td, uap)
auio.uio_resid = uap->nbyte;
auio.uio_segflg = UIO_USERSPACE;
error = kern_readv(td, uap->fd, &auio);
return(error);
return (error);
}
/*
@ -369,7 +369,7 @@ dofileread(td, fd, fp, auio, offset, flags)
/* Finish zero length reads right here */
if (auio->uio_resid == 0) {
td->td_retval[0] = 0;
return(0);
return (0);
}
auio->uio_rw = UIO_READ;
auio->uio_offset = offset;
@ -420,7 +420,7 @@ sys_write(td, uap)
auio.uio_resid = uap->nbyte;
auio.uio_segflg = UIO_USERSPACE;
error = kern_writev(td, uap->fd, &auio);
return(error);
return (error);
}
/*
@ -459,7 +459,7 @@ kern_pwrite(struct thread *td, int fd, const void *buf, size_t nbyte,
auio.uio_resid = nbyte;
auio.uio_segflg = UIO_USERSPACE;
error = kern_pwritev(td, fd, &auio, offset);
return(error);
return (error);
}
#if defined(COMPAT_FREEBSD6)