linux-user/flatload: clean up local variable shadowing
commitd5308ea64c1a4608f98b80e83a126515045d0fac
authorLaurent Vivier <laurent@vivier.eu>
Mon, 25 Sep 2023 15:10:25 +0000 (25 17:10 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Fri, 6 Oct 2023 11:27:48 +0000 (6 13:27 +0200)
tree28357583d60880f7037005ff4e705e05e238008b
parente7121b15411d0a9220d82d293537b91841f47c82
linux-user/flatload: clean up local variable shadowing

Fix following warnings:

.../linux-user/flatload.c: In function 'load_flt_binary':
.../linux-user/flatload.c:758:23: warning: declaration of 'p' shadows a previous local [-Wshadow=compatible-local]
  758 |             abi_ulong p;
      |                       ^
../../../Projects/qemu/linux-user/flatload.c:722:15: note: shadowed declaration is here
  722 |     abi_ulong p;
      |               ^

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-ID: <20230925151029.461358-2-laurent@vivier.eu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
linux-user/flatload.c