Skip to content

Commit

Permalink
fix const compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks committed Nov 3, 2024
1 parent fe6daff commit b4ecfc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ QuicConnSetOOB(
_In_ QUIC_CONNECTION* Connection,
_In_ uint32_t BufferLength,
_In_reads_bytes_(BufferLength)
void* Buffer
const void* Buffer
)
{

Check warning on line 332 in src/core/connection.c

View check run for this annotation

Codecov / codecov/patch

src/core/connection.c#L332

Added line #L332 was not covered by tests
UNREFERENCED_PARAMETER(Connection);
Expand Down

0 comments on commit b4ecfc7

Please sign in to comment.