mirror of
https://github.com/curl/curl.git
synced 2026-08-25 00:13:34 +03:00
compiler warning fix
This commit is contained in:
parent
8337a375dd
commit
c26ec47e90
4 changed files with 9 additions and 6 deletions
|
|
@ -258,7 +258,7 @@ static void read_ahead(struct testcase *test,
|
|||
newline = 1;
|
||||
}
|
||||
}
|
||||
*p++ = c;
|
||||
*p++ = (char)c;
|
||||
}
|
||||
b->counter = (int)(p - dp->th_data);
|
||||
}
|
||||
|
|
@ -611,7 +611,7 @@ again:
|
|||
|
||||
for (cp = mode; *cp; cp++)
|
||||
if (isupper((int)*cp))
|
||||
*cp = tolower((int)*cp);
|
||||
*cp = (char)tolower((int)*cp);
|
||||
|
||||
/* store input protocol */
|
||||
fprintf(test->server, "mode: %s\n", mode);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue