fix compiler warning

This commit is contained in:
Yang Tse 2009-05-05 13:04:33 +00:00
parent d33ca87e4c
commit a1708730c3
1 changed files with 1 additions and 1 deletions

View File

@ -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;