1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

tools/target_dem_fuzzer: make fuzz data pointer constant

Mostly to avoid warnings.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Kacper Michajłow
2025-06-06 19:20:34 +02:00
committed by Michael Niedermayer
parent ccfea9696f
commit dc9794d340

View File

@ -29,7 +29,7 @@
typedef struct IOContext {
int64_t pos;
int64_t filesize;
uint8_t *fuzz;
const uint8_t *fuzz;
int fuzz_size;
} IOContext;