Skip to content

Commit

Permalink
Fix int/size_t issue
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Apr 1, 2024
1 parent aeeca36 commit 4b55c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picoquictest/stream0_frame_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ int provide_stream_buffer_test_one(uint64_t stream_id, uint64_t stream_offset, s

if (length > 0) {
/* set test data value */
for (int i = 0; i < length; i++) {
for (size_t i = 0; i < length; i++) {
test_data[i] = (uint8_t)(i ^ 0x7f);
}
/* Fill the data space */
Expand Down

0 comments on commit 4b55c59

Please sign in to comment.