1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-02 08:42:48 +00:00

make u_char * -> char * conversion explicit.

Found-By:  insight's "insure++" tool.
This commit is contained in:
Jordan K. Hubbard 1996-12-05 18:05:11 +00:00
parent eb7456fc97
commit 15ba0c4e86
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20159

View File

@ -155,7 +155,7 @@ __rec_sync(dbp, flags)
status = (dbp->seq)(dbp, &key, &data, R_NEXT);
}
} else {
iov[1].iov_base = &t->bt_bval;
iov[1].iov_base = (char *)&t->bt_bval;
iov[1].iov_len = 1;
status = (dbp->seq)(dbp, &key, &data, R_FIRST);