From: Yang Tse Date: Tue, 5 May 2009 13:04:33 +0000 (+0000) Subject: fix compiler warning X-Git-Tag: upstream/7.37.1~6295 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1708730c3b06e33f595c9d76896c1d82231c22b;p=platform%2Fupstream%2Fcurl.git fix compiler warning --- diff --git a/lib/http.c b/lib/http.c index 349b81d..a31e0f8 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;