damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 0ac03df8412a477ae1657530b92a714d02105265
parent db99b4f4d4581673adf588710540d4b4923409bf
Author: William Casarin <jb55@jb55.com>
Date:   Thu,  4 Apr 2024 21:03:26 +0100

nostrdb: build: fix compile warning

A small size_t/uint64 conversion issue

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mnostrdb/src/nostrdb.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/nostrdb/src/nostrdb.c b/nostrdb/src/nostrdb.c @@ -2719,7 +2719,8 @@ static int ndb_query_plan_execute_created_at(struct ndb_txn *txn, int rc; struct ndb_note *note; struct ndb_tsid key, *pkey; - uint64_t *pint, until, since, note_id, note_size; + uint64_t *pint, until, since, note_id; + size_t note_size; struct ndb_query_result res; unsigned char high_key[32] = {0xFF}; @@ -2763,7 +2764,7 @@ static int ndb_query_plan_execute_created_at(struct ndb_txn *txn, if (pkey->timestamp < since) break; - ndb_query_result_init(&res, note, note_size, note_id); + ndb_query_result_init(&res, note, (uint64_t)note_size, note_id); if (!push_query_result(results, &res)) break; next: