diff options
-rw-r--r-- | lib/vtls/cyassl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/cyassl.c b/lib/vtls/cyassl.c index 052996e14..f51b04192 100644 --- a/lib/vtls/cyassl.c +++ b/lib/vtls/cyassl.c @@ -780,7 +780,7 @@ void Curl_cyassl_sha256sum(const unsigned char *tmp, /* input */ Sha256 SHA256pw; (void)unused; InitSha256(&SHA256pw); - Sha256Update(&SHA256pw, tmp, tmplen); + Sha256Update(&SHA256pw, tmp, (word32)tmplen); Sha256Final(&SHA256pw, sha256sum); } |