1
0
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:
Daniel Stenberg 2009-07-11 09:57:54 +00:00
parent bdbfe1f8a9
commit 4e75c70874

View File

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