1
0
Fork 0

http.c: Remove useless explicit cast

This commit is contained in:
Xavier Del Campo Romero 2023-08-01 02:24:28 +02:00
parent 7428e3fa7f
commit 3a3fdbe8a5
Signed by untrusted user: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 1 additions and 1 deletions

2
http.c
View File

@ -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)
{