[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 11/16] util/cutils: Clean up global variable shadowing in
From: |
Eric Blake |
Subject: |
Re: [PATCH v3 11/16] util/cutils: Clean up global variable shadowing in get_relocated_path() |
Date: |
Wed, 4 Oct 2023 13:52:42 -0500 |
User-agent: |
NeoMutt/20230517 |
On Wed, Oct 04, 2023 at 02:00:14PM +0200, Philippe Mathieu-Daudé wrote:
> Fix:
>
> util/cutils.c:1147:17: error: declaration shadows a variable in the global
> scope [-Werror,-Wshadow]
> const char *exec_dir = qemu_get_exec_dir();
> ^
> util/cutils.c:1035:20: note: previous declaration is here
> static const char *exec_dir;
> ^
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> util/cutils.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/util/cutils.c b/util/cutils.c
> index 25373198ad..b44718a6a2 100644
> --- a/util/cutils.c
> +++ b/util/cutils.c
> @@ -1144,7 +1144,6 @@ char *get_relocated_path(const char *dir)
> {
> size_t prefix_len = strlen(CONFIG_PREFIX);
> const char *bindir = CONFIG_BINDIR;
> - const char *exec_dir = qemu_get_exec_dir();
> GString *result;
> int len_dir, len_bindir;
>
> --
Took me a few seconds to see it, but since we have this just a few lines before:
const char *qemu_get_exec_dir(void)
{
return exec_dir;
}
the deletion of the redundant local variable is just fine.
Reviewed-by: Eric Blake <eblake@redhat.com>
--
Eric Blake, Principal Software Engineer
Red Hat, Inc.
Virtualization: qemu.org | libguestfs.org
- Re: [PATCH v3 15/16] sysemu/tpm: Clean up global variable shadowing, (continued)
- [PATCH v3 03/16] net/net: Clean up global variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH v3 06/16] qemu-img: Clean up global variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH v3 07/16] qemu-io: Clean up global variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH v3 10/16] ui/cocoa: Clean up global variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH v3 11/16] util/cutils: Clean up global variable shadowing in get_relocated_path(), Philippe Mathieu-Daudé, 2023/10/04
- Re: [PATCH v3 11/16] util/cutils: Clean up global variable shadowing in get_relocated_path(),
Eric Blake <=
- [PATCH v3 14/16] softmmu/vl: Clean up global variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH v3 13/16] semihosting/arm-compat: Clean up local variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- [PATCH v3 16/16] trace/control: Clean up global variable shadowing, Philippe Mathieu-Daudé, 2023/10/04
- Re: [PATCH v3 00/16] (few more) Steps towards enabling -Wshadow, Richard Henderson, 2023/10/04