From 9a785896535fd824a120133d807af7204b3f1570 Mon Sep 17 00:00:00 2001 From: mike Date: Sun, 12 Jan 2003 15:18:47 +0000 Subject: Fix struct iovec documentation to match reality. Submitted by: Craig Rodrigues --- lib/libc/sys/read.2 | 2 +- lib/libc/sys/write.2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/sys/read.2 b/lib/libc/sys/read.2 index da93d6f..2271141 100644 --- a/lib/libc/sys/read.2 +++ b/lib/libc/sys/read.2 @@ -85,7 +85,7 @@ structure is defined as: .Pp .Bd -literal -offset indent -compact struct iovec { - char *iov_base; /* Base address. */ + void *iov_base; /* Base address. */ size_t iov_len; /* Length. */ }; .Ed diff --git a/lib/libc/sys/write.2 b/lib/libc/sys/write.2 index 5f8776f..299dacd 100644 --- a/lib/libc/sys/write.2 +++ b/lib/libc/sys/write.2 @@ -85,7 +85,7 @@ structure is defined as: .Pp .Bd -literal -offset indent -compact struct iovec { - char *iov_base; /* Base address. */ + void *iov_base; /* Base address. */ size_t iov_len; /* Length. */ }; .Ed -- cgit v1.1