Fix compile warning in http.c

This commit is contained in:
Nick Mathewson 2010-05-10 19:57:13 -04:00
parent 29d7b32813
commit 906d573b4c

2
http.c
View File

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