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 ae4201c64769d200b7a62bffee664d56274be52f
parent 6b60e4c6ccf0093791ef82da1d389bc0677bdafb
Author: Joris Vink <joris@coders.se>
Date:   Tue,  8 Aug 2017 09:11:41 +0200

make r const

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

diff --git a/src/http.c b/src/http.c @@ -1739,7 +1739,7 @@ http_write_response_cookie(struct http_cookie *ck) const char * http_status_text(int status) { - char *r; + const char *r; switch (status) { case HTTP_STATUS_CONTINUE: