Skip to content

Commit

Permalink
build: fix invalid function name
Browse files Browse the repository at this point in the history
  • Loading branch information
jb55 committed Nov 13, 2023
1 parent 518fdff commit 29fa4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nostrdb/nostrdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 29fa4ec

Please sign in to comment.