diff options
author | Yang Tse <yangsita@gmail.com> | 2009-05-05 13:04:33 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-05-05 13:04:33 +0000 |
commit | a1708730c3b06e33f595c9d76896c1d82231c22b (patch) | |
tree | c5e37be1ca13d3aedfb32b65cb3e35d2437d70b7 /lib | |
parent | d33ca87e4c3583d8c69625c9314ea0111f560564 (diff) |
fix compiler warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |