1
0
mirror of git://jb55.com/damus synced 2024-10-04 10:50:43 +00:00

build: fix invalid function name

This commit is contained in:
William Casarin 2023-11-13 10:29:40 -08:00
parent 518fdffce9
commit 29fa4ecf2e

View File

@ -688,7 +688,7 @@ int ndb_get_tsid(struct ndb_txn *txn, enum ndb_dbs db, const unsigned char *id,
k.mv_size = sizeof(tsid);
if ((rc = mdb_cursor_open(txn->mdb_txn, txn->lmdb->dbs[db], &cur))) {
ndb_debug("ndb_get_tsid: failed to open cursor: '%s'\n", mdb_errstr(rc));
ndb_debug("ndb_get_tsid: failed to open cursor: '%s'\n", mdb_strerror(rc));
return 0;
}