silence a compiler warning

This commit is contained in:
Daniel Stenberg 2009-07-11 09:57:54 +00:00
parent bdbfe1f8a9
commit 4e75c70874
1 changed files with 1 additions and 1 deletions

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