Skip to content

Commit

Permalink
fix compile issues on macOS
Browse files Browse the repository at this point in the history
Signed-off-by: William Casarin <[email protected]>
  • Loading branch information
jb55 committed Jan 15, 2025
1 parent 7e36518 commit cc5441f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/nostrdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -4078,7 +4078,8 @@ int ndb_text_search_with(struct ndb_txn *txn, const char *query,
struct ndb_word *search_word;
struct ndb_note *note;
struct cursor cur;
uint64_t since, until, timestamp_op, *pint, note_size;
uint64_t since, until, timestamp_op, *pint;
size_t note_size;
ndb_text_search_key_order_fn key_order_fn;
MDB_dbi text_db;
MDB_cursor *cursor;
Expand Down Expand Up @@ -4282,6 +4283,7 @@ int ndb_text_search_with(struct ndb_txn *txn, const char *query,
}

cont:
;
}

done:
Expand Down

0 comments on commit cc5441f

Please sign in to comment.