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 01370c262d0902374f690578bb62bb7e6ea64a49
parent 17ceb32e23f02f20ae30f012530aae0c745e5818
Author: Joris Vink <joris@coders.se>
Date:   Tue, 21 Sep 2021 20:47:16 +0200

fix builds with DEBUG.

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

diff --git a/src/http.c b/src/http.c @@ -647,7 +647,7 @@ http_response_json(struct http_request *req, int status, if (req->owner == NULL) return; - kore_debug("%s(%p, %d)", __func__, req, code); + kore_debug("%s(%p, %d)", __func__, req, status); buf = kore_buf_alloc(1024); kore_json_item_tobuf(json, buf);