Skip to content

Commit

Permalink
Clean up sign comparison warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ColtonWilley committed Aug 27, 2024
1 parent d5268d8 commit a57d234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tls13.c
Original file line number Diff line number Diff line change
Expand Up @@ -8602,7 +8602,7 @@ static int SendTls13Certificate(WOLFSSL* ssl)
#endif /* WOLFSSL_DTLS13 */
}
else {
fragSz = min(length, maxFragment);
fragSz = min((word32)length, maxFragment);
sendSz += fragSz;
}

Expand Down

0 comments on commit a57d234

Please sign in to comment.