]> git.ipfire.org Git - thirdparty/qemu.git/commit
linux-user/syscall.c: clean up local variable shadowing in TARGET_NR_getcpu
authorLaurent Vivier <laurent@vivier.eu>
Mon, 25 Sep 2023 15:10:28 +0000 (17:10 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Fri, 6 Oct 2023 11:27:48 +0000 (13:27 +0200)
commit9962b7c213e08cbf233eb405b781ecfbb89bfd5c
tree0db5beef77237c4f8c169968aef2359231e5a88d
parenteb2929ca50e76b6e6a7152b45a9973472dd1c1aa
linux-user/syscall.c: clean up local variable shadowing in TARGET_NR_getcpu

Fix following warnings:

.../linux-user/syscall.c: In function 'do_syscall1':
.../linux-user/syscall.c:11180:22: warning: declaration of 'cpu' shadows a previous local [-Wshadow=local]
11180 |             unsigned cpu, node;
      |                      ^~~
.../linux-user/syscall.c:8963:15: note: shadowed declaration is here
 8963 |     CPUState *cpu = env_cpu(cpu_env);
      |               ^~~

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