Skip to content

Commit 8aa76a5

Browse files
committed
gossipd: use u64 for the one offset we don't.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 361deac commit 8aa76a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gossipd/gossip_store.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ void gossip_store_del(struct gossip_store *gs,
555555
u64 offset,
556556
int type)
557557
{
558-
u32 next_index;
558+
u64 next_index;
559559

560560
assert(offset > sizeof(struct gossip_hdr));
561561
next_index = gossip_store_set_flag(gs, offset,

0 commit comments

Comments
 (0)