From 3a3fdbe8a5bfe24c63b6f31071de5739ab49ed49 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Tue, 1 Aug 2023 02:24:28 +0200 Subject: [PATCH] http.c: Remove useless explicit cast --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index df54c98..ec5cc7f 100644 --- a/http.c +++ b/http.c @@ -336,7 +336,7 @@ end: static int start_line(struct http_ctx *const h) { - const char *const line = (const char *)h->line; + const char *const line = h->line; if (!*line) {