From 70a69f371892ab2e50c9003dd9c129bcc9b8f618 Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Wed, 6 Sep 2017 15:11:55 -0400 Subject: SSL: fix unused parameter warnings --- lib/vtls/polarssl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/vtls/polarssl.c') diff --git a/lib/vtls/polarssl.c b/lib/vtls/polarssl.c index 22ff2dd63..0d70027a1 100644 --- a/lib/vtls/polarssl.c +++ b/lib/vtls/polarssl.c @@ -887,6 +887,7 @@ static void Curl_polarssl_sha256sum(const unsigned char *input, unsigned char *sha256sum, size_t sha256len UNUSED_PARAM) { + (void)sha256len; sha256(input, inputlen, sha256sum, 0); } -- cgit v1.2.3