summaryrefslogtreecommitdiffstats
path: root/sys/netncp
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/netncp
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/netncp')
-rw-r--r--sys/netncp/ncp_ncp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netncp/ncp_ncp.c b/sys/netncp/ncp_ncp.c
index 8d86c02..613c2d0 100644
--- a/sys/netncp/ncp_ncp.c
+++ b/sys/netncp/ncp_ncp.c
@@ -475,7 +475,8 @@ ncp_write(struct ncp_conn *conn, ncp_fh *file, struct uio *uiop, struct ucred *c
break;
if (error) {
backup = len;
- uiop->uio_iov->iov_base -= backup;
+ uiop->uio_iov->iov_base =
+ (char *)uiop->uio_iov->iov_base - backup;
uiop->uio_iov->iov_len += backup;
uiop->uio_offset -= backup;
uiop->uio_resid += backup;
OpenPOWER on IntegriCloud