Skip to content

Commit 5e2fd78

Browse files
committed
Suppress unused parameter warning
1 parent 29c2f15 commit 5e2fd78

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/internal.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37172,6 +37172,8 @@ static int DoSessionTicket(WOLFSSL* ssl, const byte* input, word32* inOutIdx,
3717237172
*/
3717337173
static WC_INLINE int IsTls13CipherSuite(byte first, byte second)
3717437174
{
37175+
(void)second; /* Suppress unused parameter warning */
37176+
3717537177
/* TLS 1.3 cipher suites use TLS13_BYTE (0x13) as first byte */
3717637178
if (first == TLS13_BYTE)
3717737179
return 1;

0 commit comments

Comments
 (0)