From 906d573b4ce566619300d85abbf1b505e0c0dae8 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 10 May 2010 19:57:13 -0400 Subject: [PATCH] Fix compile warning in http.c --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 3c3e99af..efcec40a 100644 --- a/http.c +++ b/http.c @@ -1230,7 +1230,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)