mdbx: rename mdbx_stat() to mdbx_dbi_stat().

This commit is contained in:
Leo Yuriev
2017-03-29 18:51:22 +03:00
parent 40f8f53b0e
commit 7d351f74c4
8 changed files with 20 additions and 17 deletions

View File

@@ -442,9 +442,9 @@ static int process_db(MDB_dbi dbi, char *name, visitor *handler, int silent) {
return rc;
}
rc = mdbx_stat(txn, dbi, &ms, sizeof(ms));
rc = mdbx_dbi_stat(txn, dbi, &ms, sizeof(ms));
if (rc) {
error(" - mdbx_stat failed, error %d %s\n", rc, mdbx_strerror(rc));
error(" - mdbx_dbi_stat failed, error %d %s\n", rc, mdbx_strerror(rc));
return rc;
}