From bd1ed5f3c5015999c91a33bd5d7ed69b8b7b81d5 Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Sun, 2 May 2010 12:51:35 +0200 Subject: [PATCH] Fix a compile warning introduced in 739e688 --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 511bff87..c92f60fc 100644 --- a/http.c +++ b/http.c @@ -1256,7 +1256,7 @@ evhttp_parse_response_line(struct evhttp_request *req, char *line) { char *protocol; char *number; - char *readable = ""; + const char *readable = ""; protocol = strsep(&line, " "); if (line == NULL) -- 2.50.1