diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-21 13:32:31 -0700 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-31 16:28:42 +0200 |
| commit | 581ca58246c1906701680292dfa04af1d129308d (patch) | |
| tree | 83acab0462e7de486088857d3a46dae5f75e9541 /target/sparc/cpu.h | |
| parent | f32d678252134779d1f129d80435e827877136f5 (diff) | |
| download | focaccia-qemu-581ca58246c1906701680292dfa04af1d129308d.tar.gz focaccia-qemu-581ca58246c1906701680292dfa04af1d129308d.zip | |
hw/core/cpu: Use size_t for memory_rw_debug len argument
Match the prototype of cpu_memory_rw_debug(). Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250325224403.4011975-4-richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'target/sparc/cpu.h')
| -rw-r--r-- | target/sparc/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h index 462bcb6c0e..68f8c21e7c 100644 --- a/target/sparc/cpu.h +++ b/target/sparc/cpu.h @@ -604,7 +604,7 @@ void dump_mmu(CPUSPARCState *env); #if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY) int sparc_cpu_memory_rw_debug(CPUState *cpu, vaddr addr, - uint8_t *buf, int len, bool is_write); + uint8_t *buf, size_t len, bool is_write); #endif /* translate.c */ |