hw/misc/arm_sysctl.c: Avoid shadowing local variable
commitb2e7e2048bbe7a82b921d9ca71da9aec1668fcfe
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 22 Sep 2023 15:29:42 +0000 (22 16:29 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Fri, 29 Sep 2023 08:07:18 +0000 (29 10:07 +0200)
tree5ccac24a16775a7c1c68382977059f4072542c5a
parent33b3b4aded2eb56d505d563e4788e0654a7e9f2b
hw/misc/arm_sysctl.c: Avoid shadowing local variable

Avoid shadowing a local variable in arm_sysctl_write():

../../hw/misc/arm_sysctl.c: In function ‘arm_sysctl_write’:
../../hw/misc/arm_sysctl.c:537:26: warning: declaration of ‘val’ shadows a parameter [-Wshadow=local]
  537 |                 uint32_t val;
      |                          ^~~
../../hw/misc/arm_sysctl.c:388:39: note: shadowed declaration is here
  388 |                              uint64_t val, unsigned size)
      |                              ~~~~~~~~~^~~

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-ID: <20230922152944.3583438-3-peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
hw/misc/arm_sysctl.c