Clean up sign comparison warnings

This commit is contained in:
Colton Willey
2024-08-27 10:07:11 -07:00
parent d5268d8bb5
commit a57d234f6b

View File

@ -8602,7 +8602,7 @@ static int SendTls13Certificate(WOLFSSL* ssl)
#endif /* WOLFSSL_DTLS13 */
}
else {
fragSz = min(length, maxFragment);
fragSz = min((word32)length, maxFragment);
sendSz += fragSz;
}