From b672616b38a1c779e5b2d8040b307ffdddcbec26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moise=CC=81s=20Guimara=CC=83es?= Date: Fri, 21 Jul 2017 10:57:41 -0300 Subject: [PATCH] fixes cast to void --- src/tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tls.c b/src/tls.c index 86bed5982..8efbda0e0 100644 --- a/src/tls.c +++ b/src/tls.c @@ -1662,7 +1662,7 @@ static int TLSX_SNI_Parse(WOLFSSL* ssl, byte* input, word16 length, } } #else - void(input); + (void)input; #endif return 0;