diff options
| author | Mike Barcroft <mike@FreeBSD.org> | 2003-01-12 15:18:47 +0000 |
|---|---|---|
| committer | Mike Barcroft <mike@FreeBSD.org> | 2003-01-12 15:18:47 +0000 |
| commit | 0f0ca6ffc9a8c868ceaf1f2669696ed1ed873a71 (patch) | |
| tree | a901ccf7bc2f0c8a51c706905a11c41375388a88 /lib/libc | |
| parent | 070f13151da62529fa8ae652181d9938539ee47e (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/sys/read.2 | 2 | ||||
| -rw-r--r-- | lib/libc/sys/write.2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/read.2 b/lib/libc/sys/read.2 index da93d6f764aa..2271141bbc93 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 5f8776f4d2b2..299dacd0a026 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 |
