Skip to content

Commit

Permalink
Remove const data members in threadpooltest payload (#2639)
Browse files Browse the repository at this point in the history
  • Loading branch information
senhuang42 authored May 12, 2021
1 parent 01fe479 commit b35c250
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/fuzzer.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,11 +340,11 @@ static void FUZ_decodeSequences(BYTE* dst, ZSTD_Sequence* seqs, size_t seqsSize,
typedef struct {
ZSTD_CCtx* cctx;
ZSTD_threadPool* pool;
void* const CNBuffer;
void* CNBuffer;
size_t CNBuffSize;
void* const compressedBuffer;
void* compressedBuffer;
size_t compressedBufferSize;
void* const decodedBuffer;
void* decodedBuffer;
int err;
} threadPoolTests_compressionJob_payload;

Expand Down

0 comments on commit b35c250

Please sign in to comment.