From a1708730c3b06e33f595c9d76896c1d82231c22b Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Tue, 5 May 2009 13:04:33 +0000
Subject: [PATCH] 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 349b81da63..a31e0f879b 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;
 
-- 
GitLab