diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2017-09-06 15:11:55 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-09-06 15:11:55 -0400 |
commit | 70a69f371892ab2e50c9003dd9c129bcc9b8f618 (patch) | |
tree | 4a95bcfa31594ee3fdf85c17b1be49bd9bdeac01 /lib/vtls/mbedtls.c | |
parent | c96d96bc5fd334f90fce04bfe89a9ecbbe8e6094 (diff) | |
download | curl-70a69f371892ab2e50c9003dd9c129bcc9b8f618.tar.gz |
SSL: fix unused parameter warnings
Diffstat (limited to 'lib/vtls/mbedtls.c')
-rw-r--r-- | lib/vtls/mbedtls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c index 8a0f05b62..9fc7bd2e1 100644 --- a/lib/vtls/mbedtls.c +++ b/lib/vtls/mbedtls.c @@ -1028,6 +1028,7 @@ static void Curl_mbedtls_sha256sum(const unsigned char *input, unsigned char *sha256sum, size_t sha256len UNUSED_PARAM) { + (void)sha256len; mbedtls_sha256(input, inputlen, sha256sum, 0); } |