From 4839aca7ba18a7b00c39f7504d272f7e41314572 Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Fri, 17 Nov 2017 06:42:15 -0700 Subject: [PATCH] fix illegal use of type warning on Windows for TLS 1.3 --- src/tls13.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tls13.c b/src/tls13.c index 408528e59..171db512f 100644 --- a/src/tls13.c +++ b/src/tls13.c @@ -6003,8 +6003,8 @@ int DoTls13HandShakeMsgType(WOLFSSL* ssl, byte* input, word32* inOutIdx, byte type, word32 size, word32 totalSz) { int ret = 0; - (void)totalSz; word32 inIdx = *inOutIdx; + (void)totalSz; WOLFSSL_ENTER("DoTls13HandShakeMsgType");