From 0ac03df8412a477ae1657530b92a714d02105265 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 4 Apr 2024 21:03:26 +0100 Subject: [PATCH] nostrdb: build: fix compile warning A small size_t/uint64 conversion issue Signed-off-by: William Casarin --- nostrdb/src/nostrdb.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nostrdb/src/nostrdb.c b/nostrdb/src/nostrdb.c index 2c0476aa..9b2bb612 100644 --- 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: