Fix struct iovec documentation to match reality.

Submitted by:	Craig Rodrigues <rodrigc@attbi.com>
This commit is contained in:
Mike Barcroft 2003-01-12 15:18:47 +00:00
parent 070f13151d
commit 0f0ca6ffc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109140
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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