kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit c437e15b5c41ef7562f64f3407330c4b2390f592
parent 001096460d0cfbafb6e1c9f1833387eb8756959a
Author: Joris Vink <joris@sanctorum.se>
Date:   Fri,  8 Nov 2024 19:29:40 +0100

style nits

Diffstat:
src/python.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/python.c b/src/python.c @@ -3163,9 +3163,10 @@ static void pytimer_run(void *arg, u_int64_t now) { PyObject *ret; - struct pytimer *timer = arg; struct kore_timer *run; + struct pytimer *timer; + timer = arg; run = timer->run; timer->run = NULL;