common: cleanup unsused parameter in timer_expired()

This commit is contained in:
Simon Vrouwe
2021-12-06 16:45:50 +02:00
committed by Rusty Russell
parent f936fa926f
commit 605fda7214
9 changed files with 10 additions and 10 deletions

View File

@@ -36,7 +36,7 @@ void *reltimer_arg(struct oneshot *t)
return t->arg;
}
void timer_expired(tal_t *ctx, struct timer *timer)
void timer_expired(struct timer *timer)
{
struct oneshot *t = container_of(timer, struct oneshot, timer);