From a1708730c3b06e33f595c9d76896c1d82231c22b Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Tue, 5 May 2009 13:04:33 +0000 Subject: fix compiler warning --- lib/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http.c b/lib/http.c index 349b81da6..a31e0f879 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1544,7 +1544,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, else for(i = 0; i < gotbytes; ptr++, i++) { perline++; /* amount of bytes in this line so far */ - if(*ptr=='\x0a') { + if(*ptr == 0x0a) { char letter; int writetype; -- cgit v1.2.3