Merge pull request #1240 from cconlon/tls13issue

fix illegal use of type warning on Windows for TLS 1.3
This commit is contained in:
toddouska 2017-11-17 13:12:41 -08:00 committed by GitHub
commit 935f33ab54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6119,8 +6119,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");