From 01370c262d0902374f690578bb62bb7e6ea64a49 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Tue, 21 Sep 2021 20:47:16 +0200 Subject: [PATCH] fix builds with DEBUG. --- src/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.c b/src/http.c index 7e56092..17b7699 100644 --- 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);