Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuho committed Jan 20, 2025
1 parent 540c44e commit 6e7b2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ static void test_state_exhaustion(void)
s.dst = quicly_encodev(s.dst, 0); /* stream id */
s.dst = quicly_encodev(s.dst, i * 2); /* off */
s.dst = quicly_encodev(s.dst, 1); /* len */
*s.dst++ = (uint8_t)('a' + 26 % (i * 2));
*s.dst++ = (uint8_t)('a' + (i * 2) % 26);
commit_send_packet(client, &s, 0);
unlock_now(client);

Expand Down

0 comments on commit 6e7b2fe

Please sign in to comment.