diff options
author | mike <mike@FreeBSD.org> | 2002-10-11 14:58:34 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-10-11 14:58:34 +0000 |
commit | 8630abe45fe3751d8cc345f537ad98962a59ef5e (patch) | |
tree | 60ccb9ea10edcf3d8fc8975fb348b756ea207e35 /usr.bin/wall | |
parent | b3c0f70717dc721a9076491fe80fef2e28c95424 (diff) | |
download | FreeBSD-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 'usr.bin/wall')
-rw-r--r-- | usr.bin/wall/ttymsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/wall/ttymsg.c b/usr.bin/wall/ttymsg.c index 01db118..131cf2c 100644 --- a/usr.bin/wall/ttymsg.c +++ b/usr.bin/wall/ttymsg.c @@ -114,7 +114,7 @@ ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout) --iovcnt; } if (wret) { - iov->iov_base += wret; + iov->iov_base = (char *)iov->iov_base + wret; iov->iov_len -= wret; } continue; |