X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb2%2Ftdb2.h;h=84228bdcb95eb66292e30cb40e5ba9713cc099a6;hp=52c234f1c8b77ea7b542c09219e412f99db5b872;hb=f1069e4a2d5a8115695fb8ea3e78dbdcf389aead;hpb=e6862ec8ae269217f3596f5af84747868b983afb;ds=sidebyside diff --git a/ccan/tdb2/tdb2.h b/ccan/tdb2/tdb2.h index 52c234f1..84228bdc 100644 --- a/ccan/tdb2/tdb2.h +++ b/ccan/tdb2/tdb2.h @@ -462,7 +462,7 @@ enum TDB_ERROR tdb_wipe_all(struct tdb_context *tdb); * tdb_check - check a TDB for consistency * @tdb: the tdb context returned from tdb_open() * @check: function to check each key/data pair (or NULL) - * @private: argument for @check, must match type. + * @private_data: argument for @check, must match type. * * This performs a consistency check of the open database, optionally calling * a check() function on each record so you can do your own data consistency @@ -471,18 +471,18 @@ enum TDB_ERROR tdb_wipe_all(struct tdb_context *tdb); * * Returns TDB_SUCCESS or an error. */ -#define tdb_check(tdb, check, private) \ +#define tdb_check(tdb, check, private_data) \ tdb_check_((tdb), typesafe_cb_preargs(enum TDB_ERROR, \ - (check), (private), \ + (check), (private_data), \ struct tdb_data, \ struct tdb_data), \ - (private)) + (private_data)) enum TDB_ERROR tdb_check_(struct tdb_context *tdb, enum TDB_ERROR (*check)(struct tdb_data key, struct tdb_data data, - void *private), - void *private); + void *private_data), + void *private_data); /** * tdb_error - get the last error (not threadsafe)