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 58a6b4e3318697f060108b9712f1d917fa2047d7
parent 3207ce85263fd90cefe7b5b55799eff78f9bfad9
Author: Joris Vink <joris@coders.se>
Date:   Fri, 13 Sep 2019 23:22:38 +0200

trailing space fix

Diffstat:
src/pgsql.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pgsql.c b/src/pgsql.c @@ -726,7 +726,7 @@ pgsql_read_result(struct kore_pgsql *pgsql) if (saved_errno != EAGAIN && saved_errno != EWOULDBLOCK) continue; pgsql->state = KORE_PGSQL_STATE_WAIT; - conn->evt.flags &= ~KORE_EVENT_READ; + conn->evt.flags &= ~KORE_EVENT_READ; return; }