Skip to content

Commit

Permalink
Fix sign/unsign mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Nov 25, 2023
1 parent ef26e82 commit 4178263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picoquictest/tls_api_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -11512,7 +11512,7 @@ test_api_stream_desc_t* heavy_loss_inter_scenario(size_t* scenario_size)
if (sc != NULL) {
memset(sc, 0, sc_z);

for (int i = 0; i < nb_rounds; i++) {
for (size_t i = 0; i < nb_rounds; i++) {
sc[i].previous_stream_id = previous_stream_id;
sc[i].stream_id = next_stream_id;
sc[i].q_len = 255;
Expand Down

0 comments on commit 4178263

Please sign in to comment.