On 25/09/2023 17.10, Laurent Vivier wrote:
Fix following warnings:
.../linux-user/mmap.c: In function 'target_mremap':
.../linux-user/mmap.c:913:13: warning: declaration of 'prot' shadows a previous
local [-Wshadow=compatible-local]
913 | int prot = 0;
| ^~~~
../../../Projects/qemu/linux-user/mmap.c:871:9: note: shadowed declaration is
here
871 | int prot;
| ^~~~
Signed-off-by: Laurent Vivier <laur...@vivier.eu>
---
linux-user/mmap.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Reviewed-by: Thomas Huth <th...@redhat.com>