mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
silence a compiler warning
This commit is contained in:
parent
bdbfe1f8a9
commit
4e75c70874
@ -331,7 +331,7 @@ Curl_sec_send(struct connectdata *conn, int num, const char *buffer, int length)
|
||||
int
|
||||
Curl_sec_putc(struct connectdata *conn, int c, FILE *F)
|
||||
{
|
||||
char ch = c;
|
||||
char ch = (char)c;
|
||||
if(conn->data_prot == prot_clear)
|
||||
return putc(c, F);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user