summaryrefslogtreecommitdiffstats
path: root/sys/kern/sys_pipe.c
diff options
context:
space:
mode:
authormike <mike@FreeBSD.org>2002-10-11 14:58:34 +0000
committermike <mike@FreeBSD.org>2002-10-11 14:58:34 +0000
commit8630abe45fe3751d8cc345f537ad98962a59ef5e (patch)
tree60ccb9ea10edcf3d8fc8975fb348b756ea207e35 /sys/kern/sys_pipe.c
parentb3c0f70717dc721a9076491fe80fef2e28c95424 (diff)
downloadFreeBSD-src-8630abe45fe3751d8cc345f537ad98962a59ef5e.zip
FreeBSD-src-8630abe45fe3751d8cc345f537ad98962a59ef5e.tar.gz
Change iov_base's type from `char *' to the standard `void *'. All
uses of iov_base which assume its type is `char *' (in order to do pointer arithmetic) have been updated to cast iov_base to `char *'.
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r--sys/kern/sys_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c
index 7acaf9d..235f862 100644
--- a/sys/kern/sys_pipe.c
+++ b/sys/kern/sys_pipe.c
@@ -691,7 +691,7 @@ pipe_build_write_buffer(wpipe, uio)
*/
uio->uio_iov->iov_len -= size;
- uio->uio_iov->iov_base += size;
+ uio->uio_iov->iov_base = (char *)uio->uio_iov->iov_base + size;
if (uio->uio_iov->iov_len == 0)
uio->uio_iov++;
uio->uio_resid -= size;
OpenPOWER on IntegriCloud