From dc9794d3407ef36ca298a0c543fe4e6c07219d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Fri, 6 Jun 2025 19:20:34 +0200 Subject: [PATCH] tools/target_dem_fuzzer: make fuzz data pointer constant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mostly to avoid warnings. Signed-off-by: Kacper Michajłow Signed-off-by: Michael Niedermayer --- tools/target_dem_fuzzer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/target_dem_fuzzer.c b/tools/target_dem_fuzzer.c index 8e96fad7f8..19bc1f09c1 100644 --- a/tools/target_dem_fuzzer.c +++ b/tools/target_dem_fuzzer.c @@ -29,7 +29,7 @@ typedef struct IOContext { int64_t pos; int64_t filesize; - uint8_t *fuzz; + const uint8_t *fuzz; int fuzz_size; } IOContext;