1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

Fix parameter types of close and get members in DB.

This commit is contained in:
Stefan Farfeleder 2005-09-10 12:40:51 +00:00
parent 7405365947
commit 16ca32b39f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=149939

View File

@ -154,10 +154,10 @@ least the following fields:
.Bd -literal
typedef struct {
DBTYPE type;
int (*close)(const DB *db);
int (*close)(DB *db);
int (*del)(const DB *db, const DBT *key, u_int flags);
int (*fd)(const DB *db);
int (*get)(const DB *db, DBT *key, DBT *data, u_int flags);
int (*get)(const DB *db, const DBT *key, DBT *data, u_int flags);
int (*put)(const DB *db, DBT *key, const DBT *data,
u_int flags);
int (*sync)(const DB *db, u_int flags);