mirror of
https://github.com/curl/curl.git
synced 2025-09-29 23:46:47 +03:00
fix compiler warning
This commit is contained in:
parent
d33ca87e4c
commit
a1708730c3
|
@ -1544,7 +1544,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
|
||||||
else
|
else
|
||||||
for(i = 0; i < gotbytes; ptr++, i++) {
|
for(i = 0; i < gotbytes; ptr++, i++) {
|
||||||
perline++; /* amount of bytes in this line so far */
|
perline++; /* amount of bytes in this line so far */
|
||||||
if(*ptr=='\x0a') {
|
if(*ptr == 0x0a) {
|
||||||
char letter;
|
char letter;
|
||||||
int writetype;
|
int writetype;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user