aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-05 13:04:33 +0000
committerYang Tse <yangsita@gmail.com>2009-05-05 13:04:33 +0000
commita1708730c3b06e33f595c9d76896c1d82231c22b (patch)
treec5e37be1ca13d3aedfb32b65cb3e35d2437d70b7 /lib/http.c
parentd33ca87e4c3583d8c69625c9314ea0111f560564 (diff)
fix compiler warning
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
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;